Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. class Person {
  2. constructor(name, age){
  3. this.name = name;
  4. this.age = age;
  5. }
  6.  
  7. tellMyAge(){
  8. return `I am ${this.age} years old`;
  9. }
  10. tellMyName(){
  11. return `I am ${this.name}`;
  12. }
  13. }
  14.  
  15. person1 = new Person('John',40)
  16. person2 = new Person('Mary',35)
  17.  
  18. console.log(person1.tellMyName());
  19. console.log(person1.tellMyAge());
  20.  
  21. console.log(person2.tellMyName());
  22. console.log(person2.tellMyAge());
  23.  
  24. console.log(person2.tellMyAge());
  25. console.log(person2.tellMyName());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement