hash = {}1.upto(10) { |x| hash[x] = x * x }hash.has_value? 49 # => truehash.has_value? 81 # => truehash.has_value? 50 # => false