gpt4 book ai didi

javascript - 如何创建一个对象数组,其中每个对象有 4 个值?

转载 作者:行者123 更新时间:2023-12-02 22:20:45 24 4
gpt4 key购买 nike

我想创建一个对象数组,其中每个对象都有 4 个值。全部来自 4 个不同的数组。数组很长。我不知道该怎么做。我认为这相当困难,我已经找了好几个小时了。

var local=[F.C Barcelona, Real Madrid, Manchester United.....];
var away=[ Manchester City, PSG, Liverpool....];
var matchDay[2,3,4,5....];
var score=[2-0, 0-1, 2-2...];

最佳答案

// array to hold the objects
let arr = []
// assuming the four arrays are all the same length
// just pick one to use for the length
for(let i = 0; i < local.length; i++) {
// create a new object with the 4 fields, one from each array
// and grab the i'th entry of each array for it
let obj = {
local: local[i],
away: away[i],
matchDay: matchDay[i]
score: score[i]
};
arr.push(obj);
}

关于javascript - 如何创建一个对象数组,其中每个对象有 4 个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59239138/

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