Answers for "how to for loop array length in 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

Browse Popular Code Answers by Language