Skip to content

Instantly share code, notes, and snippets.

@kouno
Created November 5, 2013 17:39
Show Gist options
  • Save kouno/7322992 to your computer and use it in GitHub Desktop.
Save kouno/7322992 to your computer and use it in GitHub Desktop.
`if` weirdness
0 ? true : false
# => true
// ? true : false
# (irb):2: warning: regex literal in condition
# => false
'' ? true : false
# (irb):4: warning: string literal in condition
# => true
# WTF!??????
Object ? true : false
# => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment