ruby iterate over array indexes code example
Example 1: ruby iterate over array
# For Ruby
arr = ['a', 'b', 'c']
arr.each do |item|
puts item
end
Example 2: ruby how to loop through an array
array = [1, 2, 3, 4, 5, 6]
array.each { |x| puts x }