Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Hilary Katsande
9,045 Pointscan anyone please help
create a variable called student
class Student {
constructor(gpa){
this.gpa = gpa;
}
}
const student = new student('gpa 3.9 ');
4 Answers

Joe Beltramo
Courses Plus Student 22,191 PointsIt is looking for a number value not a string. Try just giving it the number 3.9

Joe Beltramo
Courses Plus Student 22,191 PointsAlso, be sure to capitalize the class name when calling it with new

Adam Beer
11,314 PointsHi 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
16,701 PointsHi, 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.

Hilary Katsande
9,045 Pointsthank you very much i removed the string and it worked
Dave StSomeWhere
19,822 PointsDave StSomeWhere
19,822 PointsCheck your case and be consistent between creating the Class and creating a new instance.