Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 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. }
  9. tellMyAge() {
  10. return this.age;
  11. }
  12. isPerson() {
  13. console.log(`I am ${this.name} I am ${this.age} years old`);
  14. }
  15.  
  16. }
  17. const person1 = new person ("John", 40);
  18. const person2 = new person ("Mary", 35);
  19. person1.isPerson()
  20. person2.isPerson()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement