round number to two decimal places javascript code example
Example 1: javascript round decimal 2 digits
var numb = 123.23454;
numb = numb.toFixed(2);
Example 2: javascript round to 2 decimal places
var subTotal="12.1345";
var subTotalFormatted=parseFloat(subTotal).toFixed(2);
Example 3: javascript round to 2 digits
var num = 2;
var roundedString = num.toFixed(2);
Example 4: javascript round to 2 decimal
function round(num, places) {
num = parseFloat(num);
places = (places ? parseInt(places, 10) : 0)
if (places > 0) {
let length = places;
places = "1";
for (let i = 0; i < length; i++) {
places += "0";
places = parseInt(places, 10);
}
} else {
places = 1;
}
return Math.round((num + Number.EPSILON) * (1 * places)) / (1 * places)
}
round(1.005, 2);
round(1.005, "1");
round("1.23", 1);
round("1.436", "2");
Example 5: round number 2 decimals javascript
Math.round((num + Number.EPSILON) * 100) / 100
Example 6: how to numeric value is after point 2 values in javascript
var totalAmount = 0;
totalAmount = Number($("#sub_amount").val()) + Number($("#vat_amount").val());
totalAmount = totalAmount.toFixed(2);
$('#total_amount').val(totalAmount);