Skip to content

Instantly share code, notes, and snippets.

@chvonrohr
Created June 17, 2019 16:35
Show Gist options
  • Save chvonrohr/c99fbcd9d3f7d5d3553d346b798f8ffc to your computer and use it in GitHub Desktop.
Save chvonrohr/c99fbcd9d3f7d5d3553d346b798f8ffc to your computer and use it in GitHub Desktop.
found cool JS snippets
// 123456789 -> 123,456,789
n.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