gpt4 book ai didi

javascript - 在javascript中连接多个数组而不是concat

转载 作者:行者123 更新时间:2023-11-29 16:16:01 26 4
gpt4 key购买 nike

我正在遍历 JSON 数据以提取日期并将它们放入一个数组中。下面的代码是我在循环中的代码示例。

// get the JSON data
var foo = "2013-03-28";

// split foo into an array
var bar = foo.split('-'); // Output ["2013", "03", "08"]

// putting array in necessary format
for (a in bar) {
bar[a] = parseInt(arr[a]); // Output [2013, 3, 8]
}

现在我已经按照我需要的方式拥有了我的数组,下次它循环时我想添加到更大的数组,如下所示

// Trying to add each new array to a bigger array
baz += bar

// Sample output I'm looking for
baz = [ [2013, 3, 8], [2013, 2, 12], [2013, 1, 22], ... ]

帮助将不胜感激

最佳答案

使用push将元素添加到数组的末尾:

baz.push(bar);

关于javascript - 在javascript中连接多个数组而不是concat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15755980/

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