gpt4 book ai didi

javascript - 从多个数组中返回第二个值 Javascript

转载 作者:行者123 更新时间:2023-12-02 19:00:10 26 4
gpt4 key购买 nike

如何从一组数组中返回第一个值?

var arr = [
['2009', 1000, 400, 800],
['2010', 1170, 460, 1200],
['2011', 660, 1120, 500],
['2012', 1030, 540, 800]
], res, i, a, b, c, d, e;

!function doMerge() {
for(i = 0; i < arr.length; i++) {
res = arr[i];
console.log(res.splice(1));
}
}(arr)

// get rid of years
// prints
[1000, 400, 800]
[1170, 460, 1200]
[660, 1120, 500]
[1030, 540, 800]

我正在尝试构建第一个值的数组[1000, 1170, 660, 1030]

最佳答案

res = [];

function doMerge() {
for(i = 0; i < arr.length; i++) {
res.push(arr[i][1]);
}
}

doMerge();

console.log(res);

输出[ 1000, 1170, 660, 1030 ]

关于javascript - 从多个数组中返回第二个值 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14866540/

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