Created
April 10, 2014 23:41
-
-
Save benburry/10432346 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
irb(main):006:0> roles = ['one', 'two'] | |
=> ["one", "two"] | |
irb(main):007:0> roles.include? 'one' && true | |
=> false | |
irb(main):008:0> roles.include?('one') && true | |
=> true | |
irb(main):009:0> roles.include? 'one' and true | |
=> true |
>> roles.include? true && 'one'
=> true
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
madness