Guest User

Untitled

a guest
Jul 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. (function($) {
  2. var private_var = 'secret',
  3. init = function() {
  4. console.debug(this);
  5. };
  6.  
  7. init(); // this will be window
  8. $(init); // this will be document
  9.  
  10. })(jQuery);
Add Comment
Please, Sign In to add comment