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

can anyone please help

create a variable called student

new_object.js
class Student {
    constructor(gpa){
        this.gpa = gpa;
    }
}
const student = new student('gpa 3.9 ');
Dave StSomeWhere
Dave StSomeWhere
19,870 Points

Check your case and be consistent between creating the Class and creating a new instance.

4 Answers

It is looking for a number value not a string. Try just giving it the number 3.9

Also, be sure to capitalize the class name when calling it with new

Adam Beer
Adam Beer
11,314 Points

Hi Hilary! Don't use simple paragraph in the new student, use only numbers (3.9). When you create new Student the s letter is big.

tomd
tomd
16,701 Points

Hi, your Student class begins with a capital 'S'. So when you declare a variable the word 'student' after 'new' should start with a capital letter.

thank you very much i removed the string and it worked