Skip to content

Instantly share code, notes, and snippets.

@andrit
Created August 8, 2018 00:51
Show Gist options
  • Save andrit/165e7d1f839109990f314f588bae49d6 to your computer and use it in GitHub Desktop.
Save andrit/165e7d1f839109990f314f588bae49d6 to your computer and use it in GitHub Desktop.
function chunk(array, size) {
  const chunked = [];
  let index = 0;

  while (index < array.length) {
    chunked.push(array.slice(index, index + size));
    index += size;
  }

  return chunked;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment