Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Daniel 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.