标签: javascript
我有一个循环显示单词数组的脚本,但是如何为此添加一个speed元素呢?
words = ["Doe", "Ray", "Mee"]; count = words.length; currentWord = random(0, parseInt(count)); words[parseInt(currentWord)];
答案 0 :(得分:2)
如果您想延迟循环的每次迭代的执行,请查看setInterval(MDN)和setTimeout(MDN)。
setInterval
setTimeout