parse float with 2 decimal code example
Example 1: javascript convert string to 2 decimal
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
Example 2: javascript round to 2 digits
var num = 2;
var roundedString = num.toFixed(2);// 2.00
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
var num = 2;
var roundedString = num.toFixed(2);// 2.00