how to round off to nearest integer in 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: round to nearest hundredth javascript
Math.round(X);
Math.round(10*X)/10;
Math.round(100*X)/100;
Math.round(1000*X)/1000;
Example 3: rounding off in javascript
var avg=10.55;
console.log(Math.round(avg));
Example 4: round to nearest decimal javascript
function round(value, precision) {
var multiplier = Math.pow(10, precision || 0);
return Math.round(value * multiplier) / multiplier;
}