JS Round Up Desimal
Math.round(3.14159) // 3
Math.round(3.5) // 4
Math.floor(3.8) // 3
Math.ceil(3.2) // 4
Breakable Batfish
Math.round(3.14159) // 3
Math.round(3.5) // 4
Math.floor(3.8) // 3
Math.ceil(3.2) // 4
var number = 12.3456789;
var rounded = Math.round( number * 10 ) / 10;
// rounded is 12.3
Number((6.688689).toFixed(2)); // 6.69
round(12345.6789, 2) // 12345.68
round(12345.6789, 1) // 12345.7
function round(value, precision) {
var multiplier = Math.pow(10, precision || 0);
return Math.round(value * multiplier) / multiplier;
}
round(456.7, 2).toFixed(2) // "456.70"