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 trialDaniel Bateman
13,268 PointsSetters Code Challenge Difficulty
Followed the same format that she mentioned in the video- having trouble figuring out what I'm doing wrong.
Would anyone mind helping me critique my code? Thanks in advance!
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){
if (this.level === 'Senior' || this.level === 'Junior'){
this.major = 'major';
} else {
this.major = 'None';
}
}
}
}
var student = new Student(3.9, 60);
2 Answers
Qiuhua Pan
5,776 PointsI am fairly new to Javascript, but could the answer be that there is a mistake with the quotations? (i.e. in the "set major (major)", both Senior and Junior are preceded with ' and followed by ")
Ashley Boucher
Treehouse TeacherHey Daniel,
You're really close! Try using a backing property instead of referencing the major property directly inside your if statement.
Good luck!
Daniel Bateman
13,268 PointsDaniel Bateman
13,268 PointsI did notice that, fixed it but still returned "Unexpected Identifier"
Above is what I have now.