if statement ternary code example
Example 1: ternary operator
(condition) ? (if true, do this) : (otherwise, do this)
Example 2: javascript if shorthand
condition ? doThisIfTrue : doThisIfFalse
1 > 2 ? console.log(true) : console.log(false)
// returns false
Example 3: javascript ternary operator
//ternary operator example:
var isOpen = true; //try changing isOpen to false
var welcomeMessage = isOpen ? "We are open, come on in." : "Sorry, we are closed.";