yAxis= g => g
.attr('transform',`translate(${margin.left},0)`)
.attr("color","steelblue")
.call(d3.axisLeft(y).ticks(4).tickSize(-width+margin.left+margin.right).tickFormat(d3.format(".0s")) )
.call(g => g.select(".domain").remove())
.call(g => g.select(".tick:last-of-type text").clone()
.attr("x", width/2-margin.left)
.attr("y",-10)
.attr("text-anchor", "middle")
.attr("font-size","20px")
.attr("font-weight", "bold")
.text("Deaths due to COVID-19 worldwide"))