LoginSignup
0
0

More than 5 years have passed since last update.

Rubyの配列での要素有無の判定

Posted at

Rubyでの配列の要素の中であるものがあるのかないのか判定するコード

a = ["dog", "cat", "monkey", "pig"]
puts a.include?("dog")
puts a.include?("elephant")

上はtrue下はfalse

includeを使うのか。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0