“SetTimeout JS” Kode Jawaban

JavaScript SetTimeout

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

JavaScript SetTimeout


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

javascript timeout

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

Jawaban yang mirip dengan “SetTimeout JS”

Pertanyaan yang mirip dengan “SetTimeout JS”

Lebih banyak jawaban terkait untuk “SetTimeout JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya