javascript shorthand if else 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: if shorthand typescript

const answer = x > 10 ? "greater than 10" : "less than 10";

Example 4: single if statement js true false

condition ? exprIfTrue : exprIfFalse

Example 5: shorthand if in javascript with return

pet = pets.find(pet => pet.type ==='Dog' && pet.name === 'Tommy');
console.log(pet); // { type: 'Dog', name: 'Tommy' }

Tags: