shorthand if javascript 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)
Example 3: typescript if then shorthand
const x = true;
var result = x === true ? "passed" : "failed";
Example 4: shorthand if statement js
const answer = x > 10 ? "greater than 10" : "less than 10";
if (something)
return;
Example 5: if shorthand typescript
const answer = x > 10 ? "greater than 10" : "less than 10";
Example 6: shorthand if in javascript with return
pet = pets.find(pet => pet.type ==='Dog' && pet.name === 'Tommy');
console.log(pet);