Answers for "how to iterate not own element ruby"

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
1

ruby loop through array

numbers = [0, 1, 2, 3]
for element in numbers do
  puts element
end
Posted by: Guest on October-04-2020

Browse Popular Code Answers by Language