if else shorthand js code example
Example 1: shorthand if statment in js
isLoggedIn ? "Logout" : "Login";
Example 2: shorthand if statement js
const answer = x > 10 ? "greater than 10" : "less than 10";
// or
if (something)
return;
// other code here
Example 3: if shorthand typescript
const answer = x > 10 ? "greater than 10" : "less than 10";
Example 4: examples of Conditional Operator js
var age = 19;
var canDrive = age > 16 ? 'yes' : 'no';