Skip to content

Instantly share code, notes, and snippets.

@NFodrea
Created April 25, 2017 22:40
Show Gist options
  • Select an option

  • Save NFodrea/2f1d19dba325782f18df3db681b0fcb6 to your computer and use it in GitHub Desktop.

Select an option

Save NFodrea/2f1d19dba325782f18df3db681b0fcb6 to your computer and use it in GitHub Desktop.
ES6 price format
function formatPrice(cents) {
return `$${(cents / 100).toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ',')}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment