js round to nearest integer code example
Example 1: how to displayan inteiger to a tenth in javascript
Math.round(3.14159 * 100) / 100
3.14159.toFixed(2);
parseFloat(3.14159.toFixed(2));
Math.round(3.14159)
Math.round(3.5)
Math.floor(3.8)
Math.ceil(3.2)
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: javascript round to nearest 10
var rounded = Math.round(number / 10) * 10
Example 4: rounding off numbers javascript
Math.round(3.14159 * 100) / 100
3.14159.toFixed(2);
parseFloat(3.14159.toFixed(2));
Example 5: round to nearest decimal javascript
function round(value, precision) {
var multiplier = Math.pow(10, precision || 0);
return Math.round(value * multiplier) / multiplier;
}