JavaScript
- 1 ответ
- 0 вопросов
1
Вклад в тег
(function myLoop (i) { //Loop with delay sample
setTimeout(function () {
alert('hello'); // your code here
if (--i) myLoop(i); // decrement i and call myLoop again if i > 0
}, 3000)
})(10); // pass the number of iterations as an argument