js convert float to 2 decimale code example
Example 1: javascript convert int to float with 2 decimal places
float_num.toFixed(2);
Example 2: javascript convert string to float with 2 decimal places
var twoPlacedFloat = parseFloat(yourString).toFixed(2)