gpt4 book ai didi

javascript - 如何将一个数组插入另一个数组?

转载 作者:行者123 更新时间:2023-12-03 07:15:38 24 4
gpt4 key购买 nike

我有一个包含 64 个位置的主数组,对于每个位置我都需要另一个数组。例如:someArray[index] = [someObject]

我如何创建这些数组?以及如何获取 someObject.name 、 someObject.lastName

这是代码:

$scope.filaCores = []; 
$scope.object = {}
$scope.object.name = "name";
$scope.object.secondname= "secondname";
for(var i = 0; i <10; i++) {
$scope.filaCores[i] = [$scope.object.name, $scope.object.secondname];
}

最佳答案

给你: https://jsfiddle.net/jsg81gg8/1/

根据您的描述,我认为不需要数组数组。但既然这就是你所要求的,那就去吧。您没有指定子数组有多少个数组元素,因此我将展示一个包含三个元素的示例。如果总共只需要 64 个结构,则不需要内部数组。

window.getRandomInt = function() {
return Math.floor(Math.random() * (10000 - 1 + 1)) + 1;
}

mainArray = []; /* you said you wanted 64 of these */
subArray = []; /* you didn't specify how many of these, the example below will assume 3 per each mainarray */

for (i = 0; i < 64; i++) {
for (j = 0; j < 3; j++) {
/* I'm using getRandomInt() just so you can see all the names are different */
subArray[j] = {name:"John"+getRandomInt(), lastname:"Doe"+getRandomInt()};
}
mainArray[i] = subArray;
}

/* Press F12 and go to the console tab, run this script, and you will see the output of the entire array */
console.log(mainArray);

/* You can access a specific element like this... */
alert('Alerting mainArray[23][2].lastname: '+mainArray[23][2].lastname);

如果你确实不需要子数组,并且只需要 64 个结构,那么它可以简化为如下所示: https://jsfiddle.net/Ldafbwbk/1/

更新:这是第三个示例,更接近您更新的问题: https://jsfiddle.net/7st8fnw5/3/

关于javascript - 如何将一个数组插入另一个数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36438314/

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