Guest User

Untitled

a guest
Sep 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. console.log(1);
  2. setTimeout(() => console.log(2), 1000);
  3. setTimeout(() => console.log(3), 0);
  4. Promise.resolve(true).then(() => console.log(4));
  5. console.log(5);
Add Comment
Please, Sign In to add comment