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 trialMelissa Preece
Full Stack JavaScript Techdegree Graduate 18,394 PointsHelp! 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
class Student {
constructor(gpa){
this.gpa = gpa;
}
stringGPA(gpa) {
this.gpa = '' + gpa;
return gpa;
}
}
const student = new Student(3.9);
1 Answer
Dimitar Dimitrov
11,800 Pointshttps://teamtreehouse.com/community/convert-to-string-classes
Check out this thread
Melissa Preece
Full Stack JavaScript Techdegree Graduate 18,394 PointsMelissa Preece
Full Stack JavaScript Techdegree Graduate 18,394 PointsThanks!