Guest User

Untitled

a guest
Jul 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. bob = new Human("bob", 30);
  2.  
  3. bob.constructor; // function Human() { ... }
  4.  
  5. bob.constructor.prototype; // { sayHello: ... }
  6.  
  7. bob.sayHello(); // "Hi, I'm Bob!"
Add Comment
Please, Sign In to add comment