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 Improving the Random Number Guessing Game

Jim Andrews
Jim Andrews
5,967 Points

Why no Else at the end of the first If?

Why do we not need an else at the end of the first else? I thought the syntax required and else at the end of any "if/else if" statement. Like, "else correctGuess = false;

I realize this is useless since it starts out false but I thought you needed that for the program to run properly.

2 Answers

Steven Parker
Steven Parker
231,007 Points

An "else" is always optional. Many times you need something to happen for a certain condition, but nothing special needs to be done otherwise. In these cases it is normal to use an "if" but to not have any "else".

Else is only used if you want something to happen if all of the conditions is false.