Advertisement
Guest User

Untitled

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