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