Skip to content

Instantly share code, notes, and snippets.

@rijkvanzanten
Last active December 1, 2016 09:34
Show Gist options
  • Save rijkvanzanten/0a1fd8b9aef9cc7dca7aa6e80ad7eb9b to your computer and use it in GitHub Desktop.
Save rijkvanzanten/0a1fd8b9aef9cc7dca7aa6e80ad7eb9b to your computer and use it in GitHub Desktop.
Nice little function to format prices
function formatPrice(price, currency = 'USD', locale = 'en-US') {
const options = { style: 'currency', currency };
const singles = price / 100;
if(singles % 1 === 0) options.maximumSignificantDigits = 0;
return singles.toLocaleString(locale, options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment