Answers for "how to return first character in string, array, iteration, ruby"

2

iterate over string ruby

a = 'hello, world'
a.each_char { |c|
  puts c
}
Posted by: Guest on October-17-2020

Code answers related to "how to return first character in string, array, iteration, ruby"

Browse Popular Code Answers by Language