“SetTimeout JS” Ответ

JavaScript settimeout

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

JavaScript settimeout


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

Тайм -аут javascript

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

JS SetTimeout

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

settimeout

// Run anonymous function after 5,000 milliseconds (5 seconds)
setTimeout(() => {
	// Run code
}, 5000);
Xander

SetTimeout JS

//You can also send a argument along with a timed call
setTimeout("your_fun('bob');", 1000)

function your_fun(name) { //Prints "Hello world! bob" after one second
	alert("Hello world! " + name);
}
Ultratiger

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

Вопросы похожие на “SetTimeout JS”

Больше похожих ответов на “SetTimeout JS” по JavaScript

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

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