shorthand if statement 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)
// returns false

Example 3: shorthand if statement js

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

// or

if (something)
  return;
// other code here

Example 4: ternary operator in javascript

FullName: (obj.FirstName && obj.LastName) ? obj.FirstName + " " + obj.LastName : "missing values",