Advertisement
728x90
You can round numbers to a certain number of decimals using toFixed method from native javascript.
javascript
1let pie = 3.141592653;
2
3pie = pie.toFixed(3); // 3.142Advertisement
Responsive Ad
🎯 Practice NowRelated Challenge
JavaScript Coding Exercise 26
Test your knowledge with this interactive coding challenge.
Start CodingAdvertisement
728x90
368of476