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 (2015) Prototypal Inheritance Setting Up the Prototype Chain

Arvind Kevin Arjun Sharma
Arvind Kevin Arjun Sharma
8,272 Points

Please give me a explain and a real exact answer to this challenge cause it's very annoying, (stuck for days.)

function Teacher(firstName, lastName, roomNumber) { person.call(this, firstName, lastName ); this.room = roomNumber; } Person.prototype.fullName = function() { return this.firstName + " " + this.lastName; };

person.js
function Teacher(firstName, lastName, roomNumber) {
  person.call(this, firstName, lastName );
  this.room = roomNumber;
}

Person.prototype.fullName = function() {
 return this.firstName + " " + this.lastName; 
};

1 Answer

Paul Cox
Paul Cox
12,671 Points

You need to change to the teacher.js file (it looks like you are editing the person.js file).

function Teacher(firstName, lastName, roomNumber) {
  Person.call(this, firstName, lastName);
  this.room = roomNumber;
}

Teacher.prototype = Object.create(Person.prototype);

Also, JavaScript is case-sensitive so person is not the same as Person.

Arvind Kevin Arjun Sharma
Arvind Kevin Arjun Sharma
8,272 Points

Wow i made such a stupid action, thank you sir omg!!