作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有数组:
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/
我是一名优秀的程序员,十分优秀!