Answers for "split array into small arrays"

3

js split array into smaller arrays

Array.prototype.chunk = function(n) {
  if (!this.length) {
    return [];
  }
  return [this.slice(0, n)].concat(this.slice(n).chunk(n));
};
console.log([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15].chunk(5));
Posted by: Guest on October-29-2020
0

array chunk javascript

let input = [1,2,3,4,5,6,7,8];
let chunked = []
let size = 2;

Array.from({length: Math.ceil(input.length / size)}, (val, i) => {
  chunked.push(input.slice(i * size, i * size + size))
})

console.log(chunked);
Posted by: Guest on June-13-2020
0

split array in smaller arrays

const splittedArray = [];
  while (originalArr.length > 0) {
    splittedArray.push(originalArr.splice(0,range));  
  }
Posted by: Guest on October-31-2020

Code answers related to "split array into small arrays"

Code answers related to "Javascript"

Browse Popular Code Answers by Language