gpt4 book ai didi

javascript 使用 as 模式遍历数组

转载 作者:行者123 更新时间:2023-11-30 06:55:30 25 4
gpt4 key购买 nike

我有数组:

array = ["One","Two","Three","Four"]

我想通过类似这样的循环将其用作模式

for(var i=0; i<10; i++){

从数组索引动态获取值,所以在这种情况下我的目标是:

one two three four one two three four one two

最佳答案

我想你想做如下的事情,你想得到的索引是 i % array.length(JavaScript 代码):

var array = ["One","Two","Three","Four"];
var results = [];

for (var i = 0; i < 10; i++) {
var word = array[i % array.length];
results.push(word);
// console.log(word);
}

console.log('this is the result: ' + results);

关于javascript 使用 as 模式遍历数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33586326/

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