Skip to content

Instantly share code, notes, and snippets.

@mgmgpyaesonewin
Created July 30, 2018 09:58
Show Gist options
  • Save mgmgpyaesonewin/02cae83651b2897496cb76057a00fed7 to your computer and use it in GitHub Desktop.
Save mgmgpyaesonewin/02cae83651b2897496cb76057a00fed7 to your computer and use it in GitHub Desktop.
Object.defineProperty(Array.prototype, 'chunk', {
value: function(n) {
// ACTUAL CODE FOR CHUNKING ARRAY:
return Array.range(Math.ceil(this.length/n)).map((x,i) => this.slice(i*n,i*n+n));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment