js if else shorthand code example
Example 1: shorthand if statment in js
isLoggedIn ? "Logout" : "Login";
Example 2: javascript if shorthand
condition ? doThisIfTrue : doThisIfFalse
1 > 2 ? console.log(true) : console.log(false)
// returns false
Example 3: typescript if then shorthand
const x = true;
var result = x === true ? "passed" : "failed";
//Explanation
//var 1.result = 2.x 3.=== 4.true 5.? 6."passed" 7.: 8."failed";
//1.result
//2.left side of if statement
//3.if statement operator
//4.right side of if statement
//5.shorthand then operator
//6.if true the result will be "passed"
//7.shorthand else operator
//8.if false the result will be "failed"
Example 4: shorthand if statement js
const answer = x > 10 ? "greater than 10" : "less than 10";
// or
if (something)
return;
// other code here
Example 5: single if statement js true false
condition ? exprIfTrue : exprIfFalse
Example 6: if statemnt shorthand js without else
//else if statement shorthand
y = (x === 2) ? 1 : (x === 3) ? 2 : (x === 4) ? 7 : 1000;