Skip to content

Instantly share code, notes, and snippets.

@Dammmien
Created December 11, 2015 14:30
Show Gist options
  • Save Dammmien/b1f684ea576492e01bae to your computer and use it in GitHub Desktop.
Save Dammmien/b1f684ea576492e01bae to your computer and use it in GitHub Desktop.
Split a string into chunks
"abcdefghijklmnopqrstuvwxyz".match( /.{1,4}/g );
// [ "abcd", "efgh", "ijkl", "mnop", "qrst", "uvwx", "yz" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment