Answers for "how to call function in settimeout in js"

223

javascript settimeout

setTimeout(function(){
 	alert("Sup!"); 
}, 2000);//wait 2 seconds
Posted by: Guest on June-27-2019
6

settimeout

// Run anonymous function after 5,000 milliseconds (5 seconds)
setTimeout(() => {
	// Run code
}, 5000);
Posted by: Guest on February-11-2021
1

settimeout

setTimeout(() => console.log('running') , 1000)

// or

setTimeout(() => {
	console.log('running') 
}, 1000);
Posted by: Guest on September-13-2021
0

setTimeout() Method in javascript

// setTimeout() Method in javascript
function setTimeoutFunction() {
    setTimeout(function(){ console.log("This message will display after 5 seconds"); }, 5000);
  }
  setTimeoutFunction();
Posted by: Guest on December-16-2021

Code answers related to "how to call function in settimeout in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language