Advertisement
libdo

Untitled

Oct 15th, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const arr = ['a','b','c','d','e','f','g'];
  2.  
  3.  
  4. const chunkArray = (array, length) => {
  5. let newArr = [];
  6. let temp = [];
  7.  
  8. for(let i = 0; i < array.length; i++){
  9. temp.push(array[i]);
  10. if((i+1)%length===0 && i!==0){
  11. newArr.push(temp);
  12. temp = [];
  13. }
  14. }
  15. newArr.push(temp);
  16. return newArr;
  17. }
  18.  
  19. console.log(chunk(arr, 4))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement