分割指定长度的数组

const listChunck = ({ list = [ ], size = 1}) => {
    let result = [];
    if (size <= 0) return [];
    while (list.length) {
          result.push(list.splice(0, size));
    }
    return result;
}

你可能感兴趣的:(分割指定长度的数组)