How many time to split an array of 10 items code example
Example 1: array chunk javascript
let input = [1,2,3,4,5,6,7,8,9];
let chunked = []
let size = 2;
for (let i = 0; i < input.length; i += size) {
chunked.push(input.slice(i, i + size))
}
console.log(chunked)
Example 2: split array into chunks javascript
Array.prototype.chunk = function(size) {
let result = [];
while(this.length) {
result.push(this.splice(0, size));
}
return result;
}
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];
console.log(arr.chunk(2));