Advertisement
Guest User

Untitled

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