hsh.values â array
Instance Public methods
Returns a new array populated with the values from hsh. See also
Hash#keys
.
h = { "a" => 100, "b" => 200, "c" => 300 } h.values #=> [100, 200, 300]
Returns a new array populated with the values from hsh. See also
Hash#keys
.
h = { "a" => 100, "b" => 200, "c" => 300 } h.values #=> [100, 200, 300]
Please login to continue.