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 Working with Classes in JavaScript Adding methods to classes

Sougata Ghosh
Sougata Ghosh
6,096 Points

StringGPA method

How do i do this ? Help with the correct code pls.

adding_methods.js
class Student {
    constructor(gpa){
        this.gpa = gpa;
    }
  stringGPA(gpa) {
    return toString(gpa);
  };
}

const student = new Student(3.9);

1 Answer

Eric M
Eric M
11,545 Points

Hi Sougata,

The instructions could be clearer on what you need to do here. What this challenge actually wants is for the stringGPA method to take no arguments and return a conversion of the class property gpa that was set during instantiation.

A note on class methods though, they don't end with a semicolon, just the curly brace.

Seperately to that, there's no independant toString() function in JavaScript, you need to use the method of the object type that you want to convert to a string. In this case, as GPA is a number, you need to use the toString() method on the number. It's always a good idea to check the MDN reference when you're working with functions you don't use everyday. I use the MDN reference regularly when working with JavaScript.

Okay, so, with those new bits of information, we can rewrite your stringGPA method as:

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

Cheers,

Eric