section - Encontrar el índice actual en CADA ciclo(Ruby)
wbr tag in html5 (2)
Posible duplicado:
Contador automático en Ruby para cada uno?
Quiero averiguar el índice actual mientras estoy en cada bucle. ¿Cómo lo hago?
X=[1,2,3]
X.each do |p|
puts "current index..."
end
x.each_with_index { |v, i| puts "current index...#{i}" }
X.each_with_index do |item, index|
puts "current_index: #{index}"
end