Created
June 4, 2022 08:58
-
-
Save hoangbits/f4e4d2465ace1e9a6cc289b0b093e98e to your computer and use it in GitHub Desktop.
This file contains hidden or 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):005:0> (1..5).include?(5) #=> true | |
=> true | |
irb(main):006:0> (1...5).include?(5) #=> false | |
=> false | |
irb(main):007:0> 1.upto(5).include?(5) | |
=> true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment