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 trialStephan Hoeksema
16,567 Pointsgetter value
Why isn't this returning the correct value:
get level() {
if(this.credit > 90) {
return 'Senior';
} else if(this.credit >= 61 && this.credit <= 90) {
return 'Junior';
} else if(this.credit >= 31 && this.credit <= 60) {
return 'Sophomore';
} else {
return 'Freshman';
}
}
The conditional says over 90, between 61 and 90, between 31 and 60 and everything smaller than 30
class Student {
constructor(gpa, credits){
this.gpa = gpa;
this.credits = credits;
}
stringGPA() {
return this.gpa.toString();
}
get level() {
if(this.credit > 90) {
return 'Senior';
} else if(this.credit >= 61 && this.credit <= 90) {
return 'Junior';
} else if(this.credit >= 31 && this.credit <= 60) {
return 'Sophomore';
} else {
return 'Freshman';
}
}
}
const student = new Student(3.9, 45);
1 Answer
Joe Beltramo
Courses Plus Student 22,191 PointsPluralize the variable name from credit
to credits
Stephan Hoeksema
16,567 PointsStephan Hoeksema
16,567 PointsJoe thanks! In my IDE it worked,