Skip to content

Instantly share code, notes, and snippets.

@amiel
Created April 28, 2011 21:18
Show Gist options
  • Save amiel/947363 to your computer and use it in GitHub Desktop.
Save amiel/947363 to your computer and use it in GitHub Desktop.
not_operator.rb
# Some values, they are themselves
true # => true
false # => false
"value" # => "value"
0 # => 0
nil # => nil
!true # => false
!false # => true
!"value" # => false
!0 # => false
!nil # => true
!!true # => true
!!false # => false
!!"value" # => true
!!0 # => true
!!nil # => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment