Skip to content

Instantly share code, notes, and snippets.

@joho
Created March 16, 2009 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joho/80175 to your computer and use it in GitHub Desktop.
Save joho/80175 to your computer and use it in GitHub Desktop.
# this is my least favourite boolean/operator precedence gotcha
# got any of your own to share?
x = true and false # => false
x # => true
y = true && false # => false
y # => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment