Skip to content

Instantly share code, notes, and snippets.

@patrickomeara
Created November 27, 2012 06:15
Show Gist options
  • Save patrickomeara/4152678 to your computer and use it in GitHub Desktop.
Save patrickomeara/4152678 to your computer and use it in GitHub Desktop.
/*
* long way
* "false" could be replaced with anything that returns false ie
* 10 < 5, 0, -1, 5-8
*/
if(false)
console.log("I am right");
else
console.log("I am wrong");
//shorthand
console.log(false?"I am right":"I am wrong");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment