Skip to content

Instantly share code, notes, and snippets.

@mgmgpyaesonewin
Created June 6, 2018 04:39
Show Gist options
  • Save mgmgpyaesonewin/360177aa44a6ecc4ac4a8c4fbaab9cf1 to your computer and use it in GitHub Desktop.
Save mgmgpyaesonewin/360177aa44a6ecc4ac4a8c4fbaab9cf1 to your computer and use it in GitHub Desktop.
1000 => 1,000; 1000000 => 1,000,000
function number_with_commas(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