javascript function returns rounding decimal result code example
Example 1: round to nearest decimal javascript
round(12345.6789, 2) // 12345.68
round(12345.6789, 1) // 12345.7
Example 2: best way to round to two typescript
const roundTo = function(num: number, places: number) {
const factor = 10 ** places;
return Math.round(num * factor) / factor;
};
roundTo(123.456, 2); // 123.46
roundTo(123.3210, 2); // 123.32
roundTo(123.456, 1); // 123.5
roundTo(123, 2); // 123