Created
December 3, 2019 21:47
-
-
Save NickFoden/97a1ed3ad37570507fbe9d3b584c4f4b to your computer and use it in GitHub Desktop.
JavaScript Currency Formatter for Us Currency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const formatter = new Intl.NumberFormat("en-US", { | |
style: "currency", | |
currency: "USD", | |
minimumFractionDigits: 2 | |
}); | |
//formatter.format(100000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment