“Settimeout JS” Kod odpowiedzi

JavaScript Settimeout

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

JavaScript Settimeout


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

Timeout 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

Odpowiedzi podobne do “Settimeout JS”

Pytania podobne do “Settimeout JS”

Więcej pokrewnych odpowiedzi na “Settimeout JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu