Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hoangbits/f4e4d2465ace1e9a6cc289b0b093e98e to your computer and use it in GitHub Desktop.
Save hoangbits/f4e4d2465ace1e9a6cc289b0b093e98e to your computer and use it in GitHub Desktop.
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