Guest User

Untitled

a guest
Sep 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. var MyObject = {
  2. some_method: function(){
  3. console.log(this)
  4. }
  5. }
  6.  
  7. MyObject.some_method(this)
  8.  
  9. // > { some_method: [Function] }
Add Comment
Please, Sign In to add comment