and or ternary operator code example
Example 1: 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.";
Example 2: single if statement js true false
condition ? exprIfTrue : exprIfFalse