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

Melissa Preece
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Melissa Preece
Full Stack JavaScript Techdegree Graduate 18,394 Points

Help! code challenge in Object-Oriented JavaScript course

Hi all, I am stuck on task 2 of this challenge. Not quite sure how to convert a numeric value into a string. I looked online and possibly found a solution using ' ' + gpa, but that doesn't seem to work. Can someone help please? Here's the link: https://teamtreehouse.com/library/objectoriented-javascript-2/working-with-classes-in-javascript/adding-methods-to-classes

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

const student = new Student(3.9);

1 Answer