I came across the following line in a JS function (it was an RGB to HSB color converter, if you must know)
hsb.s = max != 0 ? 255 * delta / max : 0;
I'm wondering if someone can explain what the "?" and the ":" mean in this context.
|
I came across the following line in a JS function (it was an RGB to HSB color converter, if you must know)
I'm wondering if someone can explain what the "?" and the ":" mean in this context. |
||||
|
It is called the Ternary Operator. It has the form of: Your code is equivalent to
|
|||||||||||||||||||||
|
|
Properly parenthesized for clarity, it is
meaning return either
|
|||
|
|
|
hsb.s = max != 0 ? 255 * delta / max : 0; ? is a ternary operator, it works like an if in conjunction with the : != means not equals So, the long form of this line would be
|
|||
|
|
|
It's the ternary operator: http://en.wikipedia.org/wiki/Ternary_operation. |
||||
|
|
|
This is probably a bit clearer when written with brackets as follows:
What it does is evaluate the part in the first brackets. If the result is true then the part after the ? and before the : is returned. If it is false, then what follows the : is returned. |
|||
|
|
|
That's the ternary operator. It's a shortcut for if/then/else http://www.gsdesign.ro/blog/how-to-use-ternary-operator-in-javascript/ |
|||
|
|
|
|
|||
|
Infinity(caused by divide-by-zero). – Crescent Fresh Nov 20 '09 at 17:03