I have a value 'Dog' and an array ['Cat', 'Dog', 'Bird'].
'Dog'
['Cat', 'Dog', 'Bird']
How do I check if it exists in the array without looping through it? Is there a simple way of checking if the value exists, nothing more?
You're looking for include?:
include?
>> ['Cat', 'Dog', 'Bird'].include? 'Dog' => true
2.1m questions
2.1m answers
60 comments
57.0k users