Advertisement
enr1g

JS Race Condition

Mar 15th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function foo() {
  2.     setTimeout(function() {
  3.         alert(1)
  4.     });
  5.     for (var i = 0; i < 99999999; ++i) {
  6.         if (i == 24234422) {
  7.             console.log(i);
  8.         }
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement