FrontendDeveloper.in

JavaScript question detail

How do you round numbers to certain decimals

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
Back to all JavaScript questions
Get LinkedIn Premium at Rs 399