Skip to content

Instantly share code, notes, and snippets.

@fleimisch
Created July 17, 2019 16:45
Show Gist options
  • Save fleimisch/353ba95e3037b50e282c7d8333099414 to your computer and use it in GitHub Desktop.
Save fleimisch/353ba95e3037b50e282c7d8333099414 to your computer and use it in GitHub Desktop.
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 2
})
formatter.format(1000) // "$1,000.00"
formatter.format(10) // "$10.00"
formatter.format(123233000) // "$123,233,000.00"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment