javascript round to the nearest lower number code example
Example: Rounding Up To The Nearest Hundred js
function round100 (num1) {
return Math.round(num1/100)*100;
}
function round100 (num1) {
return Math.round(num1/100)*100;
}