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

if else

My question is this: Is it possible to put an lf else statement in another if else statement, and if so how would one do that? I cannot post code because it is of a sensitive nature, but I am attempting to do this and was wondering if it is doable.

1 Answer

Jeff Lemay
Jeff Lemay
14,268 Points

Of course. The inner if/else statements will work the same way.

if (this == 'this') {
  if (that == 'that') {
    if (those == 'those') {
        // check one passed, check two passed, and check three passed!
    } else {
       // check one passed, check two passed, but not check three
    }
  } else {
     // check one passed, but not check two
  }
} else {
  // nothing passed
}