Answers for "short if statements in javascript"

6

shorthand if statment in js

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

short if statements in javascript

let showme || "if the variable showme has nothing inside show this string";
let string = condition ? 'true' : 'false'; // if condition is more than one enclose in brackets
let condition && 'show this string if condition is true';
Posted by: Guest on October-12-2021
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