Alex
0
Q:

math.round to nearest hundreth

//to round up to two decimal places
function money_round(num) {
    return Math.ceil(num * 100) / 100;
}
0

New to Communities?

Join the community