Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function User(name){
  2. this.name = name;
  3. }
  4.  
  5. User.prototype.hello = function(who){
  6. console.log("Hello, " + who.name);
  7. };
  8.  
  9. var vasya = new User("Вася");
  10. var petya = new User("Петя");
  11.  
  12. vasya.hello(petya);
  13. petya.hello(vasya);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement