Bummer! You have been redirected as the page you requested could not be found.

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 trial

JavaScript Object-Oriented JavaScript Getters and Setters Creating Getter Methods

jason limmm
jason limmm
7,581 Points

any problems with this code?

it says it's somethnig with the identifier, but i don't know what

creating_getters.js
class Student {
    constructor(gpa, credits){
        this.gpa = gpa;
        this.credits = credits;
    }

    stringGPA() {
        return this.gpa.toString();
    }
  get level(){
    const credits=this.credits;
    if(credits>90){
   return("senior");
}else if(credits<=90 && credits>60){
   return("junior");
}else if(credits<=60 && credits>30){
   return("sophmore");
}else if(credits<=30){
   return("freshman");
  }
}

const student = new Student(3.9);

1 Answer

Rohald van Merode
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Rohald van Merode
Treehouse Staff

Hey jason limmm 👋

Looks like you're missing a closing } to close of your level method. I'd highly recommend keeping your code at the right indentation levels, as with the current indentation it's quite hard to notice this missing character.

With the right indentation it's much easier to see the issue:

class Student {
    get level(){
        const credits=this.credits;
        if(credits>90){
            return "senior";
        }else if(credits<=90 && credits>60){
            return "junior");
        }else if(credits<=60 && credits>30){
            return "sophmore";
        }else if(credits<=30){
            return "freshman";
        }

}

Hope this helps! 😃