Answers for "loop through elements in array ruby"

2

ruby how to loop through an array

array = [1, 2, 3, 4, 5, 6]
array.each { |x| puts x }
Posted by: Guest on March-06-2020
2

ruby iterate over array

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

arr.each do |item|
  puts item
end
Posted by: Guest on January-11-2020

Code answers related to "loop through elements in array ruby"

Browse Popular Code Answers by Language