Skip to content

Instantly share code, notes, and snippets.

@sandosh
Created February 22, 2011 20:45
Show Gist options
  • Save sandosh/839352 to your computer and use it in GitHub Desktop.
Save sandosh/839352 to your computer and use it in GitHub Desktop.
(function(variable) { return variable !== false && true })();
> true
(function(variable) { return variable !== false && true })(false);
> false
(function(variable) { return variable !== false && true })();
> true
(function(variable) { return variable !== false && true })(true);
> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment