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 JavaScript Basics (Retired) Making Decisions with Conditional Statements Programming Multiple Outcomes

guram dgebuadze
seal-mask
.a{fill-rule:evenodd;}techdegree
guram dgebuadze
Front End Web Development Techdegree Student 4,122 Points

boolean

why is teacher writing correctGuess in code block. he could have written this as a variable and defined value there for example var correctGuess = false; correctGuess += true.

3 Answers

Steven Parker
Steven Parker
229,786 Points

Your example of "var correctGuess = false;" is exactly what is on line 1 of the code.

And line 5 has "correctGuess = true" — the "var" isn't used again because a variable is only declared once but may be re-assigned many times.

Steven Parker
Steven Parker
229,786 Points

You would not use the "+=" operator on a boolean. Performing math on it would cause the system to convert it into a number.