for example...

if ( /* Condition */ ) {

    if ( /* Condition */ ) {

        if ( /* Condition */ ) {

          // Superb!

        } else {

          // Error 3

        }

    } else {

      // Error 2

    }

} else {

  // Error 1

}

Do you know how to avoid this? Thank you!

link|improve this question

60% accept rate
feedback

8 Answers

up vote 7 down vote accepted

If this is a library function, throw may be the appropriate action.

if (!condition1) {
    throw "Condition 1 failed.";
}

if (!condition2) {
    throw "Condition 2 failed.";
}

if (!condition3) {
    throw "Condition 3 failed.";
}

// Superb!

Other acceptable actions might be:

  • Returning 0, null, or undefined.
  • Displaying an error to the user and returning.

You will have to determine which failure action is right for your use case.

link|improve this answer
Damn you ninja! 47 seconds? :-( – Dragontamer5788 Nov 24 '10 at 17:58
1  
+1: It's just good practice to avoid the "arrow head" nested conditionals by inverting the conditions to check for the "else" part first. A linear stream of error checks is considerably easier to read and support than a nested stream of success checks. – David Nov 24 '10 at 17:58
1  
@David: Nod. One of my university CS professors hated things like return; except at the very end of a function because it was "like goto". So I wrote code like this to piss him off, and actually found out that I prefer how it reads to ridiculous levels of nested conditionals. – cdhowie Nov 24 '10 at 18:00
1  
There are good reasons for a single point of return, especially in older languages like C. Adding a return to the middle of a function may cause a memory leak, because you forgot to free some data. However, a carefully written function has "free" at the end of the function call. In more modern languages, you can use finally and destructors to prevent this kind of mistake. So modern languages don't need the "one return statement" rule anymore. IMO at least. – Dragontamer5788 Nov 24 '10 at 18:04
@Dragontamer5788: A valid point. In C, where I have to free() a bunch of stuff, I usually throw all that code at the end, have a variable hold the return value of the function (defaulted to an error code, and this is assuming a non-void function) and goto the cleanup code from errors. Oh, my CS professor hated that too. – cdhowie Nov 24 '10 at 18:07
show 7 more comments
feedback

It looks like you have 3 conditions to check and 4 actions (3 different errors + 1 success). Unfortunately in the general case it's going to require 3 conditional checks and 4 actions. I think the code can be cleaned up a bit by using the following structure though

if (! /* condition 1 */ ) {
  // Error 1
} else if (! /* condition 2 */ ) { 
  // Error 2
} else if (! /* condition 3 */ ) { 
  // Error 3
} else {
  // superb
}
link|improve this answer
Cleanly stacking the conditions next to the errors using normal language structure in a well ordered fashion. It's beyond me why so many people think the throw approach is better. – eBusiness Nov 24 '10 at 19:27
feedback

Would you prefer this?

if ( /* Condition 1*/ && /* Condition 2*/ && /* Condition 3 */) {
  // Superb!
}
else if (! /* Condition 1*/){
  // Error 1
}
else if (! /* Condition 2*/){
  // Error 2
}
else if (! /* Condition 3*/){
  // Error 3
}
link|improve this answer
feedback
if ( ! /* Condition */ ) {
Error 1
throw someSortOfException
}

if (! condition 2){
Error 2
throw someSortOfOtherException
}

if (! condition 3){
Error 3
throw another Exception
}

// Success!

Depending on the situation, your code may be prefered. You'll probably want to catch those exceptions somewhere for example.

link|improve this answer
feedback

Well you can use exceptions, or breaks within a block, or multiple functions. Often this requires inverting your conditions to get the code ordered the right way.

do {
    if (! /* Condition 1 */ ) {
        // Error 1
        break;
    }

    if (! /* Condition 2 */ ) {
        // Error 2
        break;
    }

    if (! /* Condition 3 */ ) {
        // Error 3
        break;
    }

    // Superb!
} while (false);

The do-while(false) loop is a way of making a block that you can break out of in languages that will not tolerate an anonymous block. It could just as easily be a function and use returns, or a try-catch with exceptions.

link|improve this answer
And how precisely is this any better than if/else? – M2tM Nov 24 '10 at 18:12
@M2tM Did I say it was better, I said it was an alternative - I listed others that were better and showed the most unusual approach that people would not have seen. Other answers have shown other approaches. The if-else set answers duplicate conditions which I dislike. – Orbling Nov 24 '10 at 18:14
It does not answer duplicate conditions: if(!Condition1){ERROR1}else if(!Condition2){ERROR2}else if(!Condition3){ERROR3}else{SUCCESS} – M2tM Nov 24 '10 at 18:46
There are no duplicate conditions. This style of do{}while(false) is a throwback to C and other similar languages which have memory management concerns and no exceptions. Even still, it was ugly then, it's ugly now. – M2tM Nov 24 '10 at 18:47
To be clear this is a javascript question, memory management is implicit. This suggestion is outdated and bad for the language it's proposed with. – M2tM Nov 24 '10 at 18:50
show 1 more comment
feedback
if (!condition1)
    // Error 1 (and exit scope if necessary)

if (!condition2)
    // Error 2 (and exit scope if necessary)

if (!condition3)
    // Error 3 (and exit scope if necessary)

// Superb!
link|improve this answer
feedback

Yes; you can compose together your if statements into a single compound statement using the AND operator, and handle the error conditions in a single block. Depending on your error handling needs, though, you may need to again have multiple ifs to make sure you're properly handling the error (it depends on your error handling resolution, really).

To wit:

if (CondA && CondB && CondC)
   {
   // Execute success
   }
else
   {
   if (!CondA)
      // Do error A
   else if (!CondB)
      // Do error B
   else if (!CondC)
     // Do error C
   }
}
link|improve this answer
feedback

There are a few ways, the simplest is to simply bust out some functions and abstract out the different layers (this should be done anyway if you find yourself going deep.)

if ( /* Condition */ ) {
    value = aFunctionSaysWhat();
} else {
  // value = Error 1
}

....
value aFunctionSaysWhat(){
    if ( /* Condition */ ) {
         return aSecondFunctionHere();
    } else {
      // return Error 2
    }
}

The basic premise is that a function should live on one layer of abstraction if possible, and do one thing.

The next possibility is to flatten it all out, this is superior to your initial nested method, but basically has similar complexity. It could be much cleaner than the functional approach if you only have a few options and you don't plan on adding more.

if(ErrorCondition1){
   //Error 1
}else if(ErrorCondition2){
   //Error 2
}else if(ErrorCondition3){
   //Error 3
}else{
   //Superb
}

Finally, you can store a hash or map with the desired answers and remove the if completely, the ability to implement this relies on your ability to hash some result:

Results = {'Result1':'Error1', 'Result2':'Error2', 'Result3':'Error3', 'Success':'Superb'}

return Results[ConditionHash(Condition)];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.