javascript convert string to float with 2 decimal places 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)
Example 3: get decimals from float javascript
js> 2.3 % 1
0.2999999999999998