Is there a major difference between this:
var status = (age >= 18) ? "adult" : "minor";
and this?
var status;
if (age >= 18)
status = "adult";
else
status = "minor";
|
Is there a major difference between this:
and this?
|
||||
|
There can be a difference as far as performance goes. Some browsers use or used to be slower with the However, as far as the logic of the code is concerned, it's the same. |
|||
|
|
|
To add my two cents, this (?:) is called a ternary operator. Wikipedia has a good article on the subject. Pretty much supported in every high level language. |
|||||||||||
|
{}especially in JavaScript, where automatic semicolon insertion can screw you up. – Ivo Wetzel Dec 26 '10 at 23:05