js format number to 2 decimals wioth rounding code example
Example 1: rounding number to x decimals javascript
let num = 12.5452411;
num = num.toFixed(3); // 12.545
Example 2: round decimal js
Math.round(num * 100) / 100
let num = 12.5452411;
num = num.toFixed(3); // 12.545
Math.round(num * 100) / 100