Skip to content

Instantly share code, notes, and snippets.

@NickFoden
Created December 3, 2019 21:47
Show Gist options
  • Save NickFoden/97a1ed3ad37570507fbe9d3b584c4f4b to your computer and use it in GitHub Desktop.
Save NickFoden/97a1ed3ad37570507fbe9d3b584c4f4b to your computer and use it in GitHub Desktop.
JavaScript Currency Formatter for Us Currency
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