Skip to content

Instantly share code, notes, and snippets.

@ckknight
Last active December 17, 2015 06:38
Show Gist options
  • Save ckknight/5566644 to your computer and use it in GitHub Desktop.
Save ckknight/5566644 to your computer and use it in GitHub Desktop.
function chunk(array, length) {
var chunked = [];
for (var i = 0, len = array.length; i < len; i += length) {
chunked.push(array.slice(i, i + length));
}
return chunked;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment