Answers for "ruby array loop with index"

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
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
0

ruby loop each with index

X.each_with_index do |item, index|
  puts "current_index: #{index}"
end
Posted by: Guest on March-20-2020

Browse Popular Code Answers by Language