Advertisement
Punk_UnDeaD

Untitled

Dec 11th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function _l(k) {
  2.   console.log(k);
  3. }
  4. var n = 0;
  5. setInterval((function(n){return function(){_l(n);}})(n), 1000);
  6. var n = 1;
  7. setInterval((function(n){return function(){_l(n);}})(n), 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement