Answers for "how to split up a section of an array"

0

array chunk javascript

//#Source https://bit.ly/2neWfJ2 
const chunk = (arr, size) =>
  Array.from({ length: Math.ceil(arr.length / size) }, (v, i) =>
    arr.slice(i * size, i * size + size)
  );
console.log(chunk([1, 2, 3, 4, 5], 2));
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 to split up a section of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language