Guest User

Untitled

a guest
Oct 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. > var foo = function() { return foo; }
  2. undefined
  3.  
  4. > foo
  5. function () { return foo; }
  6.  
  7. > foo()
  8. function () { return foo; }
  9.  
  10. > foo()() === foo()()()()()()()()
  11. true
Add Comment
Please, Sign In to add comment