gpt4 book ai didi

javascript - 如何用特定模式划分数组数组

转载 作者:行者123 更新时间:2023-11-29 15:37:04 25 4
gpt4 key购买 nike

我需要将数组:分成 N(N 是新数组的数量)具有特定模式的数组。

数组是动态的,值可以改变。

这是我想做的示例:

enter image description here

这是我尝试做的真实生活示例: enter image description here

我需要按此模式划分一个数组并创建 N 个数组:在示例中我创建了 2 个数组但现在假设我想创建 99 个数组

enter image description here

最佳答案

像这样的东西会起作用..

var array = ['a','b','c','d','e'];
var results = devideArray(array,2);

function devideArray(array, count){
var result = [];
for (var i=0; i<count; i++){
result[i] = [];
}
for (var i=0; i<array.length; i++){
result[i%count].push(array[i]);
}
return result;
}

关于javascript - 如何用特定模式划分数组数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26947568/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com