Advertisement
ur001

Untitled

Sep 17th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function() {
  2.   console.log(1);
  3.   setTimeout(function () { console.log(2) }, 1000);
  4.   setTimeout(function () { console.log(3) }, 0);
  5.   console.log(4);
  6. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement