rounding javascript code example
Example 1: js rounding
Math.floor(5.5)
Math.round(5.5)
Math.ceil(5.5)
Math.floor(5.57 * 10) / 10
Example 2: rounding off in javascript
var avg=10.55;
console.log(Math.round(avg));
Example 3: rounding off numbers javascript
Math.round(3.14159 * 100) / 100
3.14159.toFixed(2);
parseFloat(3.14159.toFixed(2));
Example 4: javascript round
function round(num, places) {
num = parseFloat(num);
places = (places ? parseInt(places, 10) : 0)
if (places > 0) {
let length = places;
places = "1";
for (let i = 0; i < length; i++) {
places += "0";
places = parseInt(places, 10);
}
} else {
places = 1;
}
return Math.round((num + Number.EPSILON) * (1 * places)) / (1 * places)
}
round(1.005, 2);
round(1.005, "1");
round("1.23", 1);
round("1.436", "2");
Example 5: how to use math.round
Math.floor(5.5)
Math.round(5.5)
Math.ceil(5.5)
Math.floor(5.57 * 10) / 10
Example 6: math.round in javascript
let xo =7.45;
xo = Math.round(xo);