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 trialSara Masek
Front End Web Development Techdegree Student 11,513 Pointserror: "student.stringGPA is not a function" keeps popping up when trying to convert a number to a string
class Student {
constructor(gpa, stringGPA){
this.gpa = gpa;
this.stringGPA = stringGPA;
}
stringGPA(){
return this.gpa.stringify();
}
}
const student = new Student(3.9);
I'm trying to convert the gpa variable into a string inside the stringGPA method, however the error "student.stringGPA is not a function" error keeps popping up. Any help or feedback on this is much appreciated.
class Student {
constructor(gpa, stringGPA){
this.gpa = gpa;
this.stringGPA = stringGPA;
}
stringGPA(){
return this.gpa.stringify();
}
}
const student = new Student(3.9);
2 Answers
jb30
44,806 PointsTo convert a number to a string in Javascript, you could use this.gpa.toString()
or JSON.stringify(this.gpa)
.
Sara Masek
Front End Web Development Techdegree Student 11,513 PointsThe issue was actually with this.stringGPA - it shouldn't have been defined like it was above (even though the test let me pass with it in the module before)