Skip to content

Instantly share code, notes, and snippets.

@Expl4Life
Created August 21, 2017 12:32
Show Gist options
  • Save Expl4Life/f6a0754fdaf7f68c56f38414071f6e4a to your computer and use it in GitHub Desktop.
Save Expl4Life/f6a0754fdaf7f68c56f38414071f6e4a to your computer and use it in GitHub Desktop.
CreateSpaceSeparator
function addSpaceSeparator(number) {
return number.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