Advertisement
whoisYeshua

Event Loop Basic

Jun 15th, 2023
749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. console.log(1);
  2.  
  3. setTimeout(function () {
  4.   console.log(2);
  5. }, 0);
  6.  
  7. Promise.resolve()
  8.   .then(function () {
  9.     console.log(3);
  10.   })
  11.   .then(function () {
  12.     console.log(4);
  13.   });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement