场景
数组:[1,2,3,4,5,6,7,8,9,10]
目标:[[1,2],[3,4],[5,6],[7,8],[9,10]]
思路分析
借助splice
方法或者slice
方法,一直对数组进行指定位数的删除,并将返回的数组push到一个新数组种
// 方法一:
function splitArr(array, subLength) {
let index = 0;
let newArr = [];
while(index < array.length) {
newArr.push(array.slice(index, index += subLength));
}
return newArr;
}
// 方法二:
function splitArr(arr,len) {
const result = []
while (a.length > 0) {
result.push(a.splice(0, k))
}
return result
}
同样的我们也可以使用两个指针的方法,不过js种splice我觉得更为方便,就不再记录
标签:index,newArr,js,result,数组,长度,array From: https://www.cnblogs.com/zx529/p/17007001.html