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); // 100.52

Example 2: javascript round to 2 decimal places

var subTotal="12.1345";// can also be int, float, string
var subTotalFormatted=parseFloat(subTotal).toFixed(2); //"12.13"

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);// 2.00

Example 5: round to nearest decimal javascript

round(12345.6789, 2) // 12345.68
round(12345.6789, 1) // 12345.7

Example 6: round number 2 decimals javascript

Math.round((num + Number.EPSILON) * 100) / 100