Open In App

Ruby | Hash keys() function

Last Updated : 07 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Hash#keys() is a Hash class method which gives an array with all the keys present in the hash.

Syntax: Hash.keys()

Parameter: Hash values

Return: array with all the keys present in the hash

Example #1 :




# Ruby code for Hash.keys() method
  
# declaring Hash value
a = {a:100, b:200}
  
# declaring Hash value
b = {a:100, c:300, b:200}
  
# declaring Hash value
c = {a:100}
  
  
# keys Value
puts "Hash a keys form : #{a.keys()}\n\n"
  
puts "Hash b keys form : #{b.keys()}\n\n"
  
puts "Hash c keys form : #{c.keys()}\n\n"


Output :

Hash a keys form : [:a, :b]

Hash b keys form : [:a, :c, :b]

Hash c keys form : [:a]

Example #2 :




# Ruby code for Hash.keys() method
  
# declaring Hash value
a = { "a" => 100, "b" => 200 }
  
# declaring Hash value
b = {"a" => 100}
  
# declaring Hash value
c = {"a" => 100, "c" => 300, "b" => 200}
  
  
# keys Value
puts "Hash a keys form : #{a.keys()}\n\n"
  
puts "Hash b keys form : #{b.keys()}\n\n"
  
puts "Hash c keys form : #{c.keys()}\n\n"


Output :

Hash a keys form : ["a", "b"]

Hash b keys form : ["a"]

Hash c keys form : ["a", "c", "b"]



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads