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 trial

JavaScript Node.js Basics (2014) Building a Command Line Application Handling Parsing and Status Code Errors

In "handling-parsing-and-status-code-error" section, in Q3, the ";" is missed for the var !!!?

This is not a question, it's a comment. The answer depends on this typo!!

1 Answer

Steven Parker
Steven Parker
229,644 Points

You're forgetting that semicolons are optional in JavaScript.

This is assuming, of course, that the statements do not share a line.

I expect that you're referring to this line:

var personString = '{"name": "Lauren"}'

This assignment is complete, adding or leaving off the semicolon will have no effect.