Guest User

Untitled

a guest
May 26th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var Person = {
  2. name: "jana",
  3. getName: function(callBack){
  4. callBack();
  5. console.log("** "+this.name);
  6. }
  7.  
  8. var anotherPerson = { name: "prabu"}
  9.  
  10. Person.getName.apply(anotherPerson, function(){})
  11.  
  12. Person.getName.apply(anotherPerson)( function(){})
Add Comment
Please, Sign In to add comment