Answers for "javascript wait 1 second async"

4

javascript async delay

const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));

(async () => {
  console.log('1');
  await delay(1000);
  console.log('2');
})();
Posted by: Guest on December-06-2020
3

javascript wait 1 second

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language