call a function in settimeout javascript code example
Example 1: javascript settimeout
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
Example 2: set timeout javascript
setTimeout( () => {
alert("J'aime les chats");
}, 2000);//wait 2 seconds
Example 3: javascript settimeout
setTimeout(function(){
console.log("hello");
}, 3000); //wait for atleast 3 seconds before console logging
Example 4: settimout jquery
setTimeout(function(){ alert("Hello"); }, 3000);
Example 5: javascript set timeout
var timeToWait = 3000; // 1000 = 1 second
setTimeout(() => {
console.log("Text printed after 3 seconds");
}, timeToWait);