Can you round a number in javascript to 1 character after the decimal point (properly rounded)?
I tried the *10, round, /10 but it leaves two decimals at the end of
function rnd(v,n=2) { return Math.round((v+Number.EPSILON)*Math.pow(10,n))/Math.pow(10,n) }
this one catch the corner cases well