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 trialHilary 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,870 PointsDave StSomeWhere
19,870 PointsCheck your case and be consistent between creating the Class and creating a new instance.