math round to the nearest whole number code example
Example 1: javascript round to nearest 10
var rounded = Math.round(number / 10) * 10
Example 2: math.round to nearest hundreth
//to round up to two decimal places
function money_round(num) {
return Math.ceil(num * 100) / 100;
}