Skip to content

Instantly share code, notes, and snippets.

@huckfinnaafb
Created January 7, 2012 04:31
Show Gist options
  • Save huckfinnaafb/1573793 to your computer and use it in GitHub Desktop.
Save huckfinnaafb/1573793 to your computer and use it in GitHub Desktop.
function Foo() {
var pass = true;
if (false) {
pass = false;
} else if (false) {
pass = false;
} else if (false) {
pass = false;
}
return pass;
}
function Bar() {
return (true && true && true && true && true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment