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 Instantiating an object

Lucciano Molina
Lucciano Molina
7,332 Points

Create 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

new_object.js
class Student {
    constructor(gpa){
        this.gpa = gpa;
    }
}

const Student = new Student (3.9);

2 Answers

You are using "Student" twice. I don't think this is allowed. I would recommend to name your const "newStudent" for example.

Lucciano Molina
Lucciano Molina
7,332 Points

Thank you, Mark! I did what you recommended and it worked. I appreciate you taking the time to help me out.

Happy I could be of help :)