Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Object-Oriented JavaScript Getters and Setters Object Interaction

Gena Aivazian
Gena Aivazian
14,144 Points

TypeError: Cannot set property 'phone' of undefined at Object. I dont know what's wrong in my code

class Pet { constructor(animal, age, breed, sound) { this.animal = animal; this.age = age; this.breed = breed; this.sound = sound;

} get activity() { const today = new Date(); const hour = today.getHours();

if (hour < 8 && hour < 19) {
  return 'Playing';

} else { return 'sleeping'; } } get owner() { return this._owner; } set owner(owner) { this._owmer = owner; console.log(setter called ${owner}); }

speak() { console.log(this.sound); } }

class Owner { constructor(name, address) { this.name = name; this.address = address; }

set phone(phone) { const phoneNormalized = phone.replace(/[^0-9]/g, ''); this._phone = phoneNormalized; }

get phone() { return this._phone; }

}

const ernie = new Pet('dog', 1, 'pug', 'yip yip'); const vera = new Pet('dog', 8, 'border collie', 'woof woof');

ernie.owner = new Owner('Ashley', '123 Main Street'); ernie.owner.phone = '(555) 555-5555';

console.log(ernie.phone);

1 Answer

tomd
tomd
16,701 Points

Spelling mistake, you wrote this._owmer = owner should be this._owner = owner inside set owner(owner)