Answers for "what is timeout in javascript"

223

javascript settimeout

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

js settimeout

setTimeout(() => { alert('Hello') }, 1000)
Posted by: Guest on February-03-2020
1

settimeout

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

// or

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

setTimeout

function fastFunction (done) {
  setTimeout(function () {
    done()
  }, 100)
}

function slowFunction (done) {
  setTimeout(function () {
    done()
  }, 300)
}
Posted by: Guest on July-05-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 "Javascript"

Browse Popular Code Answers by Language