fixing a variable to 1 decemal pace code example
Example: math.round js 1 decimal
var number = 12.3456789;
var rounded = Math.round( number * 10 ) / 10;
// rounded is 12.3
var number = 12.3456789;
var rounded = Math.round( number * 10 ) / 10;
// rounded is 12.3