Answers for "ruby if array"

2

ruby check if value in array

['Cat', 'Dog', 'Bird'].include?('Dog')
Posted by: Guest on March-08-2022
7

contains ruby array

>> ['Cat', 'Dog', 'Bird'].include? 'Dog'
=> true
Posted by: Guest on April-08-2020

Browse Popular Code Answers by Language