Advertisement
Guest User

Untitled

a guest
Sep 29th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for(var i=0; i<20; i++) {
  2.     console.log(i);
  3.     (function() {
  4.         var properScope = i;
  5.  
  6.         setTimeout(function() {
  7.             console.log(i);
  8.         }, 100);
  9.     })();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement