javascript keep only 2 decimal places code example
Example 1: js number 2 decimal places
(3.141596).toFixed(2); // 3.14
Example 2: round number 2 decimals javascript
Math.round((num + Number.EPSILON) * 100) / 100
(3.141596).toFixed(2); // 3.14
Math.round((num + Number.EPSILON) * 100) / 100