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 trialCaroline Louw
12,155 PointsWhat is wrong with my if statement? Can else if statements be used in javascript?
And is there a simpler way to write this code
class Student {
constructor(gpa, credits){
this.gpa = gpa;
this.credits = credits;
}
get level() {
if (this.credit > 90) {
return 'Senior';
} else if (this.credit < 90 && this.credit > 60) {
return 'Junior';
} else if (this.credit < 60 && this.credit > 30 ) {
return 'Sophomore';
} else {
return 'Freshman';
}
}
stringGPA() {
return this.gpa.toString();
}
}
const student = new Student(3.9);
2 Answers
moukim hfaidh
Full Stack JavaScript Techdegree Graduate 30,167 Pointswhen you call the level method from an instance of the class Student it will return his level like this let student1 = new Student(3 , 80); student1.level(); // will return 'Junior'
John Brady
Full Stack JavaScript Techdegree Student 14,013 PointsI noticed:
this.credit vs this.credits
in the if statement.