Skip to content

Instantly share code, notes, and snippets.

@phylaxis
Created December 18, 2018 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phylaxis/8bb43c5d29e16b473d891b7019a6c176 to your computer and use it in GitHub Desktop.
Save phylaxis/8bb43c5d29e16b473d891b7019a6c176 to your computer and use it in GitHub Desktop.
Currency Formatting
var amount = 12345.99;
//prepare number formatter
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 2
});
//Format the amount
console.log( formatter.format( amount ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment