0 votes
in JavaScript by
How do you rounding numbers to certain decimals?

1 Answer

0 votes
by

You can round numbers to a certain number of decimals using toFixed method from native javascript.

let pie = 3.141592653;
pie = pie.toFixed(3); // 3.142
...