class Person {
constructor (name,age){
this.name = name;
this.age = age;
}
tellMyName(){
return `I am ${this.name}`;
}
tellMyAge(){
return `I am ${this.age} years old`;
}
}
const Person1 = new Person ('John',40);
const Person2 = new Person ('Mary',35);
console.log (`${Person1.tellMyName()} ${Person1.tellMyAge()}`);
console.log (`${Person2.tellMyName()} ${Person2.tellMyAge()}`);