Skip to content

Instantly share code, notes, and snippets.

@brocard
Created June 28, 2020 18:17
Show Gist options
  • Save brocard/5d7b208dc93ef95e107161f5f610fb51 to your computer and use it in GitHub Desktop.
Save brocard/5d7b208dc93ef95e107161f5f610fb51 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