Q:

shorthand if statement js

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

// or

if (something)
  return;
// other code here
1
 isLoggedIn ? "Logout" : "Login";
4
condition ? doThisIfTrue : doThisIfFalse

1 > 2 ? console.log(true) : console.log(false)
// returns false
0
var name_map = {
        "#first": "First Name",
        "#middle": "Middle Name",
        "#last": "Last Name"
}

if (Object.keys(check_map).every(selector => $(selector).val())) { 
	  // Yes, they all have non-blank values
} else {
	// No, at least one of them has a blank value (or didn't exist at all)
}
0

New to Communities?

Join the community