Guest User

Untitled

a guest
May 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var $ = function(fn) {
  2. setTimeout(fn,2000);
  3. };
  4.  
  5. $.foo = "yay";
  6. $(function(){
  7. alert($.foo); // which $ am I looking at?
  8. });
  9. $.foo = "cool";
  10.  
  11.  
  12. $ = function(fn) {
  13. alert("DOH!");
  14. };
  15. $.foo = "uhoh";
Add Comment
Please, Sign In to add comment