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

I keep getting an error on the console when trying to run my code

Here's 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 <= 20) {
    return 'playing';  
} else {
  return 'sleeping';
  }
}

get owner() {
  return this._owner;
}

set owner(owner) {
  this._owner = 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.speak();
//vera.speak();


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

console.log(ernie);

2 Answers

Check out this line class Owner() {; you have put parentheses where they shouldn't be.

Ah! I see! Thank you!