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 trialLucciano Molina
7,332 PointsCreate a variable called student. Set it equal to a new instance of class Student. The student object should be instanti
I'm not sure what I'm doing wrong, can someone please help me
class Student {
constructor(gpa){
this.gpa = gpa;
}
}
const Student = new Student (3.9);
2 Answers
Mark Reijgwart
Full Stack JavaScript Techdegree Student 8,062 PointsYou are using "Student" twice. I don't think this is allowed. I would recommend to name your const "newStudent" for example.
Lucciano Molina
7,332 PointsThank you, Mark! I did what you recommended and it worked. I appreciate you taking the time to help me out.
Mark Reijgwart
Full Stack JavaScript Techdegree Student 8,062 PointsHappy I could be of help :)