vote up -1 vote down star

There are a few ways to do this in javascript.

Foremost and most readable and flexible is probably:

if (a){
    //b
}
else {
    //c
}

Something else that only* works with assigning and is less readable is:

var foo = 'c';
if (a){
    foo = 'b';
}

My main question, though, is about the last two methods I can think of:

var foo = a ? b : c;

var foo = a && b || c;

Are there any differences between these two expressions? Other than the readability which both lack.

*although you could assign foo to be a function, then execute it after the if statement.

flag

70% accept rate
To be pedantic: you are technically discussing the conditional operator which just happens to be a ternary operator (that is an operator that operates on three elements). – Andrew Hare Mar 24 at 19:25
For short statements, the conditional operator can be more "readable" than any full-fledged if construct. – Svante Mar 24 at 22:01

4 Answers

vote up 8 vote down check

Suppose:

var a = false, b = '', c = 'bar';

Then:

var foo = a ? b : c; // foo == ''
var foo = a && b || c; // foo == 'bar'

The two are not equivalent; you should never use the boolean operators in place of the conditional operator. Like other answerers, I also am of the opinion that the conditional operator does not lack readability for simple expressions.

link|flag
I'm guessing that's what Sascha was trying to point out but you did it much clearer. thanks :) – Annan Mar 24 at 19:57
vote up 5 vote down

The ternary operator is certainly readable to me. Even moreso than the first example, since concise, logical code is always easier to understand than many lines of control code that do the same thing.

link|flag
vote up 3 vote down

I don't agree the first lacks readability as long as it is used correctly, IOW a, b and c are simple expressions themselves. This operator does get abused though in circumstances it ought not.

Similarly the second expression, using the result foo as anything other than a boolean would not be good. Using the boolean operators to return non-boolean values because thats the way they work is just confusing. However as a boolean expression its reasonable.

link|flag
vote up 1 vote down

var foo = a ? b : c; -> foo is b when a is true else c. var foo = a && b || c; -> foo is true if a and b are true or c is true.

They do not evaluate to the same result as the latter is a boolean expression, not using a ternary operator.

link|flag
If I execute the following code in firefox it says 2 and not true as you suggest: "alert(1 && 2 || 3)" – Annan Mar 24 at 19:28
a == true b == false c == false -> false and true && false = false a == true b == true c == false -> (true and true) or false = true a == false b == true c = true -> (false and true (=false)) or true = true – Sascha Mar 24 at 19:36

Your Answer

Get an OpenID
or

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