Skip to content

Instantly share code, notes, and snippets.

@svahora
Created July 12, 2015 21:39
Show Gist options
  • Save svahora/87e1898392e54506a664 to your computer and use it in GitHub Desktop.
Save svahora/87e1898392e54506a664 to your computer and use it in GitHub Desktop.
function chunk(arr, size) {
var newArr = [];
for(x=0; x<arr.length; x+=size) {
var add = arr.slice(x, x+size);
newArr.push(add);
}
return newArr;
}
chunk(['a', 'b', 'c', 'd'], 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment