Guest User

Untitled

a guest
Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var Persona = function (name) {
  2. this.name = name;
  3. }
  4.  
  5. Persona.prototype.getName = function () {
  6. return this.name;
  7. }
  8.  
  9.  
  10. var thomas = new Person('Thomas');
  11. var amy = new Person('Amy');
  12.  
  13. thomas.name // --> "Thomas"
  14.  
  15. thomas.getName.call(amy);
Add Comment
Please, Sign In to add comment