Example:
var x, y, z;
//...
x > 100 ? y = x : z = x ;
|
Example:
|
||||
|
|
|
Yes it does work the same although operator precedence is always tricky so I would recommend parenthesis to avoid confusion. tangentially related.. |
||||
|
|
|
I'm not sure if this works:
But this works:
|
|||||||||||
|
|
Yes, ternary operators work the same way in Javascript. Your example is combining a lot of expressions, so precedence might be an issue. You should parenthesize to ensure precedence. |
|||
|
|
|
Yes it works the same in that it has the following basic syntax
It only evaluates the expression, and hence processes side effects, for the expression dictated by the conditional. Here's a link to the Mozilla documentation on the ternary operator |
|||
|
|
|
Yes, ternary operators work the same way in Javascript as they do in C, C++, C#, Java, Javascript, Perl, and PHP. |
|||
|
|
|
Yes, according to the conditional operator Wikipedia article and the ECMA-262 standard (see section 11.12). |
|||
|
|
|
This should help you (in the future): https://developer.mozilla.org/en/JavaScript/Reference/Operators/Operator_Precedence First of all the Also a simple test
would have answered you question. |
||||
|
|
|
Here's a different approach. You can use the ternary to select the variable as a string within square brackets. This
|
|||
|
|