rails each loop code example
Example 1: ruby each array
a = [ "a", "b", "c" ]
a.each {|x| print x, " -- " }
Example 2: ruby each do method
array.each do |item|
puts "The current array item is: #{item}"
end
a = [ "a", "b", "c" ]
a.each {|x| print x, " -- " }
array.each do |item|
puts "The current array item is: #{item}"
end