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 trialAdapt Agency
Courses Plus Student 5,289 PointsI dont understand what is the objective.
I dont understand what is the objective. How should the result look? Description is not clear enough
What kind of value should be put into major? How does the end result look like?
class Student {
constructor(gpa, credits){
this.gpa = gpa;
this.credits = credits;
}
stringGPA() {
return this.gpa.toString();
}
get level() {
if (this.credits > 90 ) {
return 'Senior';
} else if (this.credits > 60) {
return 'Junior';
} else if (this.credits > 30) {
return 'Sophomore';
} else {
return 'Freshman';
}
}
set major(major){
//this._major = major;
if(this.level == 'Senior' && this.level == 'Junior'){
this._major = major;
}
else {
this._major = 'None';
}
};
}
var student = new Student(3.9, 60);
1 Answer
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsYou're very close. They just want 'or' instead of 'and' on line 25. "If the student's level is Junior or Senior..."
if(this.level == 'Senior' && this.level == 'Junior'){ } // switch && to ||
Adapt Agency
Courses Plus Student 5,289 PointsAdapt Agency
Courses Plus Student 5,289 PointsOokay, that did it, thank you so much :D (But the entire exercise description is really confusing)