how to trim and only have 2 decimal javascirpt code example
Example 1: javascript convert int to float with 2 decimal places
float_num.toFixed(2);
Example 2: javascript round to 2 digits
var num = 2;
var roundedString = num.toFixed(2);// 2.00
float_num.toFixed(2);
var num = 2;
var roundedString = num.toFixed(2);// 2.00