I am working through a javascript problem that asks me to:
Write a function that splits an array (first argument) into groups the length of size (second argument) an
This is my solution:
function chunkArrayInGroups(arr, size) { var acum=[]; for(i=0;i