“setimout” Ответ

JavaScript settimeout

setTimeout(function(){
 	alert("Sup!"); 
}, 2000);//wait 2 seconds
Grepper

setimout

// fire MyFunction every 2 seconds
setTimeout(function () {
  MyFunction();
}, 2000);
the preacher

Смотреть популярные ответы по языку

Смотреть другие языки программирования