hsh.member?(key) â true or false
Instance Public methods
Returns true
if the given key is present in hsh.
1 2 3 | h = { "a" => 100 , "b" => 200 } h.has_key?( "a" ) #=> true h.has_key?( "z" ) #=> false |
Returns true
if the given key is present in hsh.
1 2 3 | h = { "a" => 100 , "b" => 200 } h.has_key?( "a" ) #=> true h.has_key?( "z" ) #=> false |
Designed by : w10schools
service@w10schools.com
Please login to continue.