7

Проверить есть ли элемент в массиве

if ["a", "b", "c", "d"].include?('a') 
    puts 'Found it in the array'
end
Found it in the array
-----------