JavaScript Settimeout
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
Grepper
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
setTimeout(function(){ alert("Hello"); }, 3000);
setTimeout(function(){
//code goes here
}, 2000); //Time before execution
setTimeout(() => { alert('Hello') }, 1000)
// Run anonymous function after 5,000 milliseconds (5 seconds)
setTimeout(() => {
// Run code
}, 5000);
//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);
}