Answers for "ruby iterate over array of hashes"

1

iterating over hash, ruby

# iterating_over_hashes.rb

person = {name: 'bob', height: '6 ft', weight: '160 lbs', hair: 'brown'}

person.each do |key, value|
  puts "Bob's #{key} is #{value}"
end


#Returns
#Bob's name is bob
#Bob's height is 6 ft
#Bob's weight is 160 lbs
#Bob's hair is brown
Posted by: Guest on December-31-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 iterate over array of hashes"

Browse Popular Code Answers by Language