vote up 2 vote down star

I've seen this format used in JavaScript code, but can't find a good source for the meaning.

Edit for a follow-up:

Thanks for all the quick answers! I figured it was something like that. Now, for bonus points:

can you use (var1 ? var2)

to do the same thing as

    if (var1) {
        var2
    }

?

flag

4  
No, you can't. You have to specify the else condition also. – adamantium Sep 29 at 6:32
Regarding your edit, the closest you'll get is: if (var1) stmt; on a single line. – Drew Noakes Sep 29 at 7:12
var1 ? var2() : void(0); – Salman A Sep 29 at 7:33
@Salman I would avoid such constructs for readability sake – kangax Sep 29 at 12:41
4  
Sorry bro. I thought maybe I'd catch some sleep and watch some Sesame Street with my daughter when I woke up. You have reminded me that Stack Overflow is much more important. I appologise and assure you I am ashamed of myself. – Chris Sobolewski Sep 29 at 15:15
show 1 more comment

6 Answers

vote up 17 vote down check

It's known as a ternary (because it has three operands) conditional (because it's an if/else/then) operator.

It is evaluated to a value, so you would usually use it to assign a value, such as:

var result = condition ? value1 : value2;

Which is equivalent to:

var result;
if (condition == true) {
  result = value1;
} else {
  result = value2;
}

An example:

var message = "Length is " + len + " " + (len==1 ? "foot" : "feet");

http://en.wikipedia.org/wiki/Ternary_operation

link|flag
5  
I think your first == is a typo. – eyelidlessness Sep 29 at 6:31
3  
Also the two bits of code are not equivalent, as the second should be preceded by "var result;" – eyelidlessness Sep 29 at 6:51
1  
@eyelidlessness -- apparently I shouldn't be allowed to code before 7.30AM. I made the same == vs = mistake on SO yesterday. Thanks for pointing these out. – Drew Noakes Sep 29 at 7:10
1  
Never EVER program before you've finished your first cup of coffee. :) – Chris Sobolewski Sep 29 at 17:00
vote up 7 vote down

Its a conditional operator.

It is

if var1 then var2 else var3

Read more here

Conditional Operator

The conditional operator is the only JavaScript operator that takes three operands. This operator is frequently used as a shortcut for the if statement.

link|flag
May I know the reason for the down vote? – adamantium Sep 29 at 6:36
3  
-1. This really is taking the wrong tack. You would not want the value expressions modifying anything, you just want the value of the overall expression to be either the value on the true side or the value on the false side, that is the purpose of this operator. – AnthonyWJones Sep 29 at 6:36
2  
@phoenix Maybe your example does not show exactly a useful usage of the conditional operator. It can be simplified to var xCon = num == 1; – CMS Sep 29 at 6:49
var whatever = num < 5 ? 'less than 5' : '5 or bigger'; – Maurice Sep 29 at 6:56
vote up 3 vote down
if(var1) {
    var2;
else {
    var3;
}
link|flag
vote up 1 vote down

This seems to be sort of a ternary operation. Short form of an if else operation, so to say. check here for details...

link|flag
vote up 2 vote down

The expression var1 ? var2 : var3 returns the value of var2 if var1 is considered to have a value equivalent to true else it returns teh value of var3.

Note this is not quite the same as:-

if (var1)
   varX = var2
else
   varX = var3

Since the above construct can not itself appear as part of a larger expression.

In ternery expression, as ? : is known, one should avoid allowing the component expressions to have side effects other than perhaps the side-effects of ++ or -- operators. For example this isn't a good idea:-

varX = var1 ? doSomethingSignificant() : doSomethingElseSignificant();

In this case it would be better to use the if else construct. On the hand:-

varX = var1 ? calcSomething(var2) : someOtherCalc(var2);

this is acceptable assuming the called functions don't themselves modify the program state significantly.

Edit:

I think I need to re-enforce this point. Do not use the ternary operator as means to short cut on if statements. The two have different purposes. If your code is full of ? : that should be if else it will be difficult to read. We expect logical flow to appear in if statements. We expect ? : when there is a simple logical component to an expression. Note expressions do not modify things only the results of them when assigned should modify things.

link|flag
I think a simpler way of stating that last part is: The ternary operator's job is to be equal to one value or another based on a condition, while if statements in Javascript don't yield any value at all — their job is to execute code. – Chuck Sep 29 at 7:34
@Chuck: That is simpler however there is no reason why an expression shouldn't execute code in a Ternary operator, its what that code does (or more to the point does not do) thats important. Ideally the program state should not change as a result of the expression being evaluated. – AnthonyWJones Sep 29 at 8:09
vote up 1 vote down

As an addendum for the first question, you can alternatively use

  var result = (condition) && var1 || var2;

and obtain the same result

For the second question, in C the following works too :

  (condition) && someinstruction;

but that does not seem to work in javascript (at least with my version of firefox).

link|flag
Yes it should work. (condition) && someinstruction; should evaluate someinstruction only when condition is of truthy value. – kangax Sep 29 at 12:38

Your Answer

Get an OpenID
or

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