javascript division without 2 decimal places code example
Example 1: javascript convert int to float with 2 decimal places
float_num.toFixed(2);
Example 2: 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 3: best way to round to two typescript
const roundTo = function(num: number, places: number) {
const factor = 10 ** places;
return Math.round(num * factor) / factor;
};
roundTo(123.456, 2);
roundTo(123.3210, 2);
roundTo(123.456, 1);
roundTo(123, 2);