Skip to content

Instantly share code, notes, and snippets.

@codeincontext
Created January 23, 2012 15:24
Show Gist options
  • Save codeincontext/1663711 to your computer and use it in GitHub Desktop.
Save codeincontext/1663711 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('numberWithCommas', function(x) {
return x.toString().replace(/\B(?=(?:\d{3})+(?!\d))/g, ",");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment