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 trialJulianna Kahn
20,702 PointsHow is it that my conditional statement is returning the wrong student level?
Is there an error in my if statement logic?
class Student {
constructor(gpa, credits){
this.gpa = gpa;
this.credits = credits;
}
get level() {
if (this.credits > 90) {
return 'Senior';
} else if (this.credits > 60) {
return 'Junior';
} else if (this.credits > 30) {
return 'Sophmore';
} else {
return 'Freshman';
}
}
stringGPA() {
return this.gpa.toString();
}
}
const student = new Student(3.9);
2 Answers
Steven Parker
231,184 PointsYour logic is fine, you just have a spelling error. The function returns "Sophmore" instead of "Sophomore".
Otherwise, good job with the code!
Julianna Kahn
20,702 PointsThe code checking on this was certainly unforgiving. Thank you.
Steven Parker
231,184 PointsThe challenges can be very picky, and about specified outputs in particular. But then computers are like that in general!
Anyway, glad to help, and happy coding!