js if short code example
Example 1: if shorthand typescript
const answer = x > 10 ? "greater than 10" : "less than 10";
Example 2: single if statement js true false
condition ? exprIfTrue : exprIfFalse
const answer = x > 10 ? "greater than 10" : "less than 10";
condition ? exprIfTrue : exprIfFalse