Open In App
Related Articles

Ruby | Hash keys() function

Improve Article
Improve
Save Article
Save
Like Article
Like

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"]


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 07 Jan, 2020
Like Article
Save Article
Previous
Next
Similar Reads