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

Julianna Kahn
Julianna Kahn
20,702 Points

How is it that my conditional statement is returning the wrong student level?

Is there an error in my if statement logic?

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

  get level() {
    if (this.credits > 90)  {
      return 'Senior';
      } else if (this.credits > 60) {
      return 'Junior';
      } else if (this.credits > 30) {
      return 'Sophmore';
      } else {
      return 'Freshman';
      }
  }

    stringGPA() {
        return this.gpa.toString();
    }
}

const student = new Student(3.9);

2 Answers

Steven Parker
Steven Parker
229,785 Points

Your logic is fine, you just have a spelling error. The function returns "Sophmore" instead of "Sophomore".

Otherwise, good job with the code! :+1:

Julianna Kahn
Julianna Kahn
20,702 Points

The code checking on this was certainly unforgiving. Thank you.

Steven Parker
Steven Parker
229,785 Points

The challenges can be very picky, and about specified outputs in particular. But then computers are like that in general!

Anyway, glad to help, and happy coding!