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 trialBrandon Thompson
Courses Plus Student 4,181 PointsCan anyone help me out? Error: Your setter method is returning the wrong value
class Student {
constructor(gpa, credits) {
this.gpa = gpa;
this.credits = credits;
}
stringGPA() {
return this.gpa.toString();
}
get level() {
if (this.credits > 90) {
this.major = 'Senior';
return 'Senior';
} else if (this.credits > 60) {
this.major = 'Junior';
return 'Junior';
} else if (this.credits > 30) {
this.major = 'None';
return 'Sophomore';
} else {
this.major = 'None';
return 'Freshman';
}
}
set major(value) {
this._major = value;
}
}
var student = new Student(3.9, 60);
1 Answer
Rohald van Merode
Treehouse StaffHi Brandon Thompson 👋
You're currently always setting the backing property to be the parameter passed to the method. The challenge is asking you to only do this if the student their level is either "Junior" or "Senior". If that is not the case you'll want to set the backing property to be 'None' instead.
To implement this you'll want to add a conditional that checks for the .level
of the student and depending on that condition you can provide a value to the _major
.
I hope this helps to get you going again! If not let me know and I'd be more than happy to elaborate 🙂