Answers for "javascript wait 1 second synchronous"

3

javascript wait 1 second

setTimeout(function(){ 
    console.log("Ready")
}, 1000);
Posted by: Guest on November-11-2020
3

javascript wait 1 second

setTimeout(() => {console.log('1 second finished!')}, 1000);
Posted by: Guest on October-05-2020
1

javascript synchronous wait

function delay(n) {  
  n = n || 2000;
  return new Promise(done => {
    setTimeout(() => {
      done();
    }, n);
  });
}
Posted by: Guest on June-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language