Guest User

Untitled

a guest
Mar 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. function a() {
  2. console.log(this);
  3. }
  4.  
  5. var b = function() {
  6. console.log(this);
  7. }
  8.  
  9. a();
  10. b();
Add Comment
Please, Sign In to add comment