javascript - 设置速度/速度

时间:2012-04-25 13:18:55

标签: javascript

我有一个循环显示单词数组的脚本,但是如何为此添加一个speed元素呢?

words = ["Doe", "Ray", "Mee"]; 
count = words.length;
currentWord = random(0, parseInt(count)); 
words[parseInt(currentWord)];

1 个答案:

答案 0 :(得分:2)

如果您想延迟循环的每次迭代的执行,请查看setIntervalMDN)和setTimeoutMDN)。