Skip to content

Instantly share code, notes, and snippets.

@shiv19
Created January 7, 2018 11:22
Show Gist options
  • Save shiv19/f74e78bdee799f552d65f63870689d06 to your computer and use it in GitHub Desktop.
Save shiv19/f74e78bdee799f552d65f63870689d06 to your computer and use it in GitHub Desktop.
Split numbers into chunks
var s="4581458245834584";
var t=s.split(/(?!^)(?=(?:....)+$)/); // dots as groups of split
console.log(t);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment