correct to 2 decimal places js code example
Example 1: js number 2 decimal places
(3.141596).toFixed(2); // 3.14
Example 2: javascript convert string to 2 decimal
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
(3.141596).toFixed(2); // 3.14
var twoPlacedFloat = parseFloat(yourString).toFixed(2)