Advertisement
Guest User

Untitled

a guest
Feb 5th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. console.log("Start");
  2. setTimeout(function() { console.log("timer 1"); }, 1000);
  3. setTimeout(function() { console.log("timer 2"); }, 2000);
  4. console.log("Set");
  5. for(var i=0; i<=1000000000; i++);
  6. console.log("End loop");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement