Skip to content

Instantly share code, notes, and snippets.

@composite
Created June 17, 2014 06:09
Show Gist options
  • Select an option

  • Save composite/b35b5b18863cbb028879 to your computer and use it in GitHub Desktop.

Select an option

Save composite/b35b5b18863cbb028879 to your computer and use it in GitHub Desktop.
ONE LINE JS
Number.prototype.format = function(){
return this.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment