JavaScript converte string para 2 decimal
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
Worried Wombat
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
Math.floor(5.9) //5
Math.ceil(5.1) //6
Math.round(9.5) //10
5.3 >> 0 //5 (same as Math.floor)
7.9 >> 0 //7 (same as Math.floor)
float_num.toFixed(2);
function png(){
return Math.trunc(Math.random() * 10);
}
//Removes the decimal without rounding
string.split(".")[0];