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
Math.round( num * 10) / 10 doesn't work.
Math.round( num * 10) / 10
For example, 1455581777.8-145558160.4 gives you 1310023617.3999999.
1455581777.8-145558160.4
1310023617.3999999
So only use num.toFixed(1)
num.toFixed(1)