gpt4 book ai didi

javascript - 将数组分成 4 个数组并将这些数组存储在新数组 javascript/Jquery 中

转载 作者:行者123 更新时间:2023-12-02 16:10:18 25 4
gpt4 key购买 nike

我有一个数组,我想将其分成 4 个部分(4 个数组),然后将这 4 个数组存储到另一个数组中。

这是我到目前为止所拥有的:

a=[1,2,3,4,5,6,7,8,9,10,11,12]

while(a.length) {
a.splice(0,3);
}

最佳答案

这是一个好的开始。您还需要一个数组来放置数组:

var a = [1,2,3,4,5,6,7,8,9,10,11,12];
var result = [];

while (a.length > 0) {
result.push(a.splice(0,3));
}

(使用 while (a.length) 效果很好,但我喜欢使用更具体的条件 while (a.length > 0)。)

关于javascript - 将数组分成 4 个数组并将这些数组存储在新数组 javascript/Jquery 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30281060/

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