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 trialJoe Kelly
4,854 PointsWhy does a constructor function name have to start with uppercase? Is it a name practice or does it have functionality?
In Javascript, why does a constructor function name have to start with uppercase? Is it a naming practice or does it have functionality so that if you don't start with an uppercase something won't work as it supposed to?
2 Answers
Chris Shaw
26,676 PointsHi Joe,
Whenever you have a function that you're defining as a class
it's best practice to use a capital letter as that is the common naming convention between languages and it's much more clear than what a lowercase letter is, that said it plays no part in how the code actually functions so you can call it anything you like.
Joe Kelly
4,854 PointsThank you Chris for the clarification!
Chris Shaw
26,676 PointsNo problem