Hash#has_value?() is a Hash class method which checks whether the given value is present in hash.
Syntax: Hash.has_value?()
Parameter: Hash values
Return: true – if given value is present in hash otherwise return false
Example #1 :
a = {a: 100 , b: 200 }
b = {a: 100 , c: 300 , b: 200 }
c = {a: 100 }
puts "Hash a has_value? form : #{a.has_value?(200)}\n\n"
puts "Hash b has_value? form : #{b.has_value?(10)}\n\n"
puts "Hash c has_value? form : #{c.has_value?(100)}\n\n"
|
Output :
Hash a has_value? form : true
Hash b has_value? form : false
Hash c has_value? form : true
Example #2 :
a = { "a" => 100 , "b" => 200 }
b = { "a" => 100 }
c = { "a" => 100 , "c" => 300 , "b" => 200 }
puts "Hash a has_value? form : #{a.has_value?(200)}\n\n"
puts "Hash b has_value? form : #{b.has_value?(10)}\n\n"
puts "Hash c has_value? form : #{c.has_value?(100)}\n\n"
|
Output :
Hash a has_value? form : true
Hash b has_value? form : false
Hash c has_value? form : true
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