“Função setTimeout” Respostas de código

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

Função setTimeout

setTimeout(function(){ 
$('#overlay'). modal('hide') 
}, 5000);
//#overlay will be the ID of modal which you want to hide or show modal
Ambitious Coder

Respostas semelhantes a “Função setTimeout”

Perguntas semelhantes a “Função setTimeout”

Mais respostas relacionadas para “Função setTimeout” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código