Answers for "ruby iter array with index"

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

Browse Popular Code Answers by Language