JAVASCRIPT CONDITONAL OPERATOR code example
Example 1: ternary function javascript
var variable;
if (condition)
variable = "something";
else
variable = "something else";
//is the same as:
var variable = condition ? "something" : "something else";
Example 2: javascript if
if (32 == 32) {
console.log('32 is equil to 32!');
}