round in javascript to 2 decimal places code example
Example 1: jquery 2 decimal places
var total = 100.525444
var final_total = total.toFixed(2);
Example 2: javascript round to 2 decimal places
var subTotal="12.1345";
var subTotalFormatted=parseFloat(subTotal).toFixed(2);
Example 3: javascript round decimal 2 digits
var numb = 123.23454;
numb = numb.toFixed(2);
Example 4: javascript round to 2 digits
var num = 2;
var roundedString = num.toFixed(2);
Example 5: round to nearest decimal javascript
round(12345.6789, 2)
round(12345.6789, 1)
Example 6: round number 2 decimals javascript
Math.round((num + Number.EPSILON) * 100) / 100