JavaScript Number Format – Decimal Precision Round a number to a certain number of places


function roundNumber(num, dec) {
var result = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec);
return result.toFixed(2);
}

example

grandTotal=10;

tot=7;

roundNumber(parseFloat(grandTotal)-parseFloat(tot),2);

Leave a comment