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 trialWen Ze Lee
4,209 Pointsshould I add a var in front of jim when creating a new object with the Person constructor?
Hi!
Shouldn't the code be
var jim = new Person('Jim');
instead of
jim = new Person('Jim');
Are both cases allowed?
1 Answer
William Li
Courses Plus Student 26,868 PointsYes, both cases are allow because js is a pretty forgiving language.
Without going through the lecture, I can't be sure if jim has been initialized before, if not, then you're correct.
var jim = new Person('Jim');
is the right way to go. In the global scope, both lines should behave the same; but in some other case, omitting the var keyword can cause your program run into very strange behavior which maybe hard to debug.