js ternary operator return boolean code example
Example 1: if statement javascript one line ?
(lemons) ? alert("please give me a lemonade") : alert("then give me a beer");
Example 2: ternary function javascript
var variable;
if (condition)
variable = "something";
else
variable = "something else";
//is the same as:
var variable = condition ? "something" : "something else";