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 trialAlex Ng
11,245 PointsWhy has the class I'm trying to create already been declared for the code challenge? (Object Oriented JavaScript)
I was asked to create and empty class called "student".
When I submitted
class student {}
The error was was returned that it has already been declared. Why?
class student {
}
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Alexander Ng
You are naming the class student
(note the lower-cased 's'). Classes should always be Title-cased. If you have a look at the instructions, it does say to name it Student
(note the upper-cased 'S'). Remember, "student"
and "Student"
are two very different things.
The reason you got the error that you did is that the code checker probably has a variable named student
it uses to test the code for the challenge.
Hope that helps. :)
Alex Ng
11,245 Pointssigh I try not to ask for help on the little mistakes but, well... here we are...
Fate would have it that as soon as I asked the question, I figured it out.
Thanks, Jason.
Jason Anders
Treehouse Moderator 145,860 PointsNo worries. :)
We have all done it... and we will almost certainly all do it again. Never worry about "little mistakes"... the Community is always welcoming and willing to help. You'd be surprised how many experience that same 'blind' moment. Fortunately, there are also many, many 'ah-ha!!' moments too.
You're doing great!
Alex Ng
11,245 PointsAlex Ng
11,245 PointsThe following code won't work either, I get the same error...