Skip to content

Instantly share code, notes, and snippets.

@Dammmien
Last active September 30, 2016 09:14
Show Gist options
  • Save Dammmien/29e86674ca8d12f0d056 to your computer and use it in GitHub Desktop.
Save Dammmien/29e86674ca8d12f0d056 to your computer and use it in GitHub Desktop.
Split an array into chunks
let partition = ( a, n ) => a.length ? [ a.splice( 0, n ), ...partition( a, n ) ] : [];
partition( [ 1, 2, 3, 4, 5, 6, 7, 8 ], 2 );
// [
// [ 1, 2 ],
// [ 3, 4 ],
// [ 5, 6 ],
// [ 7, 8 ]
// ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment