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 trialguram dgebuadze
Front End Web Development Techdegree Student 4,122 Pointsboolean
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
231,269 PointsYour 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.
guram dgebuadze
Front End Web Development Techdegree Student 4,122 PointsI made misteke. correctGuess += true; He could have written this way. and why he wrote in the code block I haven't got it
Steven Parker
231,269 PointsYou would not use the "+=" operator on a boolean. Performing math on it would cause the system to convert it into a number.
guram dgebuadze
Front End Web Development Techdegree Student 4,122 Pointsthank you. this really helped me.