Skip to content

Instantly share code, notes, and snippets.

@rjoydip-zz
Created July 4, 2017 07:56
Show Gist options
  • Save rjoydip-zz/3ef1ef77db79193c439fe4e0c7aedc1e to your computer and use it in GitHub Desktop.
Save rjoydip-zz/3ef1ef77db79193c439fe4e0c7aedc1e to your computer and use it in GitHub Desktop.
function array_chunk(array, chunkSize) {
return [].concat.apply([],
array.map(function(elem, i) {
return i % chunkSize ? [] : [array.slice(i, i + chunkSize)];
})
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment