Answers for "ruby each loop on line"

1

iterate over array ruby

# For Ruby
arr = ['a', 'b', 'c']

arr.each { |item| puts item }
Posted by: Guest on January-11-2020
4

ruby each do method

numbers = [1,2,4,9,12]
numbers.each do |n|
  break if n > 10
  puts n
end
Posted by: Guest on March-09-2020

Browse Popular Code Answers by Language