javascript conditional assignment code example
Example 1: ternary function javascript
var variable;
if (condition)
variable = "something";
else
variable = "something else";
var variable = condition ? "something" : "something else";
Example 2: javascript ternary operator
var isOpen = true;
var welcomeMessage = isOpen ? "We are open, come on in." : "Sorry, we are closed.";
Example 3: examples of Conditional Operator js
var age = 19;
var canDrive = age > 16 ? 'yes' : 'no';
Example 4: ternary operator javascript
const lifePhase = (age) => {
return age < 0 || age > 140 ? 'This is not a valid age':
age < 3 ? 'baby':
age < 13 ? 'child':
age < 20 ? 'teen':
age < 65 ? 'adult':'senior citizen';
}
console.log(lifePhase(5))
Example 5: javascript conditional
age >= 18 ? `wine` : `water`;