Skip to content

Instantly share code, notes, and snippets.

@codyogden
Last active August 30, 2016 13:05
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 codyogden/7e02c5e72b4dcb90719c850237b89fb2 to your computer and use it in GitHub Desktop.
Save codyogden/7e02c5e72b4dcb90719c850237b89fb2 to your computer and use it in GitHub Desktop.
USD Currency Locale Functions
// Show two decimal places, returns a string
VARIABLE.toFixed(2);
// Show as USD Currency
VARIABLE.toLocaleString( 'USD', { style: 'currency', currency: 'USD' } );
// Show as USD Currency with commas
VARIABLE.toLocaleString( 'en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 } );
// Hi matt!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment