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 trialBernard Chiyangwa
7,094 PointsChallenge Task 1 of 2 Inside the Student class, create an empty getter method called level().
Challenge Task 1 of 2
Inside the Student class, create an empty getter method called level().
class Student get level(){
constructor(gpa, credits){
this.gpa = gpa;
this.credits = credits;
}
stringGPA() {
return this.gpa.toString();
}
}
const student = new Student(3.9);
3 Answers
Matthew Lang
13,483 PointsI'm not too sure what you're asking. Next time provide an explanation of the problem you're having instead of simply reciting the challenge's question. Anyhow, it's asking you to write a simple getter
method. If you're still unsure with these, I suggest you go back and revise the previous videos that explain them. For additional help, you can read this helpful resource.
To write a getter method, use this syntax:
get level() { }
The get
keyword tells JavaScript that this function is used to return a property.
Starky Paulino
Front End Web Development Techdegree Student 6,398 Pointsclass Student { constructor(gpa, credits){ this.gpa = gpa; this.credits = credits; }
stringGPA() {
return this.gpa.toString();
}
set major(name) {
}
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';
}
}
}
var student = new Student(3.9, 60);
Sergei Rudz
9,688 Pointsclass Student {
constructor(gpa, credits){
this.gpa = gpa;
this.credits = credits;
}
stringGPA() {
return this.gpa.toString();
}
get level(){};
}
const student = new Student(3.9);
trio-group I.AM
25,713 Pointstrio-group I.AM
25,713 PointsHey! What is your question or what are you having trouble with?