Languages
[Edit]
EN

JavaScript - Math.round to 2 decimal places

3 points
Created by:
FryerTuck
649

In this article, we would like to show you how to round a number to 2 decimal places in JavaScript.

The main concept to get our value rounded to 2 decimal places is to multiply it by 100, round it with Math.round() function and then divide by 100 again.

 

Practical example

// ONLINE-RUNNER:browser;

const round = (value) => {
	return Math.round(100 * value) / 100;  // <----------
};

// Usage example:

console.log( round(  1.2345 ) ); //  1.23
console.log( round( -1.2345 ) ); // -1.23

console.log( round(   12345 ) ); // 12350

console.log( round(   5  ,  0 ) ); // 5
console.log( round(   5. ,  0 ) ); // 5
console.log( round(  .5  ,  0 ) ); // 1

References

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - math (popular problems)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join