Skip to content

Instantly share code, notes, and snippets.

@brocard
Created June 28, 2020 18:18
Show Gist options
  • Save brocard/42e477455ef86bfef7906614d81ef437 to your computer and use it in GitHub Desktop.
Save brocard/42e477455ef86bfef7906614d81ef437 to your computer and use it in GitHub Desktop.
chunk array javascript
chunkArray(arr, n) {
return arr.length ? [arr.slice(0, n), ...this.chunkArray(arr.slice(n), n)] : [];
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment