Answers for "iterate through loop rails"

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

rails loop

while $i < $num  do
   puts("Inside the loop i = #$i" )
   $i +=1
end
Posted by: Guest on April-06-2020

Code answers related to "iterate through loop rails"

Browse Popular Code Answers by Language