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

Creating or trying to a new instance of class Student.

Challenge Task 1 of 1 Create a variable called student. Set it equal to a new instance of class Student. The student object should be instantiated with a gpa of 3.9.

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

new_object.js
class Student {
    constructor(gpa){
        this.gpa = gpa;
    }
}
var student = newStudent(3.9);

still didn't work for me. :-(

1 Answer

Eva Wright
Eva Wright
11,234 Points

You need a space between new and Student to declare a new instance so: var student = new Student(3.9);