limit number of decimals javascript code example
Example 1: javascript convert string to 2 decimal
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
Example 2: javascript snumber two decimal places as string
let money = 1.6;
money.toFixed(2);
Example 3: javascript convert int to float with 2 decimal places
float_num.toFixed(2);
Example 4: js number with four decimal places
var myNumber = 2;
myNumber.toFixed(2);
myNumber.toFixed(1);
Example 5: 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);
Example 6: limit numbers after decimal point in javascript
var num = 5.56789;
var n = num.toFixed(2);