split array into small arrays code example
Example 1: 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));
Example 2: 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);
Example 3: split array in smaller arrays
const splittedArray = [];
while (originalArr.length > 0) {
splittedArray.push(originalArr.splice(0,range));
}