Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created January 12, 2016 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/d0f98652ace027e6bfb0 to your computer and use it in GitHub Desktop.
Save chuck0523/d0f98652ace027e6bfb0 to your computer and use it in GitHub Desktop.
array = [1, 3, 7]
puts array.include? 1 # true
puts array.include? 2 # false
puts array.include? 3 # true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment