Monday, August 7, 2023
HomeProgrammingFormat Numbers with Commas in JavaScript

Format Numbers with Commas in JavaScript


Introduction

Dealing with numbers in numerous codecs is a standard job for a lot of developer, particularly these working with UI/UX. A kind of duties is displaying numbers in a extra human-readable type, like separating digits with commas. Whether or not it is for a monetary software, displaying stats on a dashboard, or merely making giant numbers extra digestible, formatting numbers with commas will help enhance person expertise. On this article, we’ll discover varied methods to carry out this job, even throwing in a few in style library strategies to make the job simpler.

Native JavaScript Strategies

One of many easiest methods to format numbers with commas is by utilizing the native toLocaleString methodology:

const quantity = 1234567.89;
const formattedNumber = quantity.toLocaleString();
console.log(formattedNumber); // Outputs: "1,234,567.89"

This methodology mechanically codecs the quantity in keeping with the person’s locale, making it a wonderful selection for internationalization. For my locale, it makes use of commas after each third digit.

Be aware: We’re used to seeing numbers, just like the one proven above, offered with solely two digits after the decimal when displayed as forex. Nevertheless, take into account that toLocaleString() will hold all digits after the decimal. So 1234567.890123 would change into “1,234,567.890123”.

Utilizing Common Expressions

When you want a bit extra management over the formatting, common expressions will help:

perform formatNumberWithCommas(quantity) {
    return quantity.toString().change(/B(?=(d{3})+(?!d))/g, ",");
}

const quantity = 1234567.89;
console.log(formatNumberWithCommas(quantity)); // Outputs: "1,234,567.89"

Hyperlink: This perform makes use of common expressions to insert commas after each third digit from proper to left, offering the specified formatting. Common expressions are a strong software, however they may appear advanced to these unfamiliar with them. You’ll be able to learn extra about common expressions in JavaScript in our article, Information to Common Expressions and Matching Strings in JavaScript.

Utilizing the Lodash Library

When you favor utilizing libraries and occur to be a fan of Lodash, the favored utility library gives a _.comma methodology which might do the job:

const _ = require('lodash');

const quantity = 1234567.89;
const formattedNumber = _.comma(quantity);
console.log(formattedNumber); // Outputs: "1,234,567.89"

Conclusion

Formatting numbers with commas is a standard requirement, enhancing the readability and general person expertise. Whereas JavaScript gives native strategies like toLocaleString, you can too obtain this by means of common expressions and even make use of libraries like Lodash. The method you select could rely in your particular wants and the context during which you are working. What’s necessary is that you simply now have the instruments at your disposal to make these giant, unwieldy numbers a little bit extra pleasant to the human eye.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments