Answers for "How many time to split an array of 10 items"

2

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)
Posted by: Guest on June-13-2020
1

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));
Posted by: Guest on August-19-2020

Code answers related to "How many time to split an array of 10 items"

Code answers related to "Javascript"

Browse Popular Code Answers by Language