Answers for "ruby loop through array of string"

2

iterate over string ruby

a = 'hello, world'
a.each_char { |c|
  puts c
}
Posted by: Guest on October-17-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 "ruby loop through array of string"

Browse Popular Code Answers by Language