“SetInterval” Ответ

JavaScript settimeout


 setTimeout(function(){ alert("Hello"); }, 3000);
 
Bald Eagle

jQuery Call Function каждую секунду

setInterval(function(){ 
    //this code runs every second 
}, 1000);
Grepper

JavaScript setInterval

setInterval(function(){ 
	console.log("Oooo Yeaaa!");
}, 2000);//run this thang every 2 seconds
Grepper

Тайм -аут javascript

setTimeout(function(){
 	//code goes here
}, 2000); //Time before execution
Phil the ice cream man

JS SetTimeout

setTimeout(() => { alert('Hello') }, 1000)
Hotentot

SetInterval

The setInterval() method calls a function at specified intervals (in milliseconds).
maher abdo

Ответы похожие на “SetInterval”

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

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