conditional statement in function javascript code example
Example 1: js if else
If - Else Statements
if (condition) {
// what to do if condition is met
} else {
// what to do if condition is not met
}
Example 2: javascript conditional
// example:
age >= 18 ? `wine` : `water`;
// syntax:
// <expression> ? <value-if-true> : <value-if-false>
Example 3: how to shorten conditional statements javascript
var canDrive = age > 16 ? 'yes' : 'no'