Answers for "shorthand if statment in js"

12

javascript if shorthand

condition ? doThisIfTrue : doThisIfFalse

1 > 2 ? console.log(true) : console.log(false)
// returns false
Posted by: Guest on May-21-2020
6

shorthand if statment in js

isLoggedIn ? "Logout" : "Login";
Posted by: Guest on April-19-2020
1

shorthand if statement js

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

// or

if (something)
  return;
// other code here
Posted by: Guest on June-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language