Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
104
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. tellMyName(){
  7. return this.name,
  8. console.log(`I am ${this.name} `)
  9. };
  10.  
  11. tellMyAge(){
  12. return this.age,
  13. console.log(`I am ${this.age} years old`)
  14. };
  15.  
  16. }
  17.  
  18. const person1 = new person ("john", 40);
  19. const person2 = new person ("Mary", 45) ;
  20.  
  21. person1.tellMyName();
  22. person1.tellMyAge();
  23.  
  24. person2.tellMyName();
  25. person2.tellMyAge();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement