js condition in function code example
Example 1: javascript if shorthand
condition ? doThisIfTrue : doThisIfFalse
1 > 2 ? console.log(true) : console.log(false)
// returns false
Example 2: single if statement js true false
condition ? exprIfTrue : exprIfFalse