№7
Проверить есть ли элемент в массиве
if ["a", "b", "c", "d"].include?('a')
puts 'Found it in the array'
end
Found it in the array
Источник:
www.phptoruby.com
www.phptoruby.com
Проверить есть ли элемент в массиве
if ["a", "b", "c", "d"].include?('a')
puts 'Found it in the array'
end
Found it in the array