let\'s have this hash:
hash = {\"a\" => 1, \"b\" => {\"c\" => 3}} hash.get_all_keys => [\"a\", \"b\", \"c\"]
how can i get all key
hash.keys is the simplest one I have seen to return an array of the key values in a hash.
hash.keys