Answers for "loop through an array ruby"

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

iterate over array ruby

# For Ruby
arr = ['a', 'b', 'c']

arr.each { |item| puts item }
Posted by: Guest on January-11-2020

Code answers related to "loop through an array ruby"

Browse Popular Code Answers by Language