Retrieves the value object corresponding to the each key objects repeatedly.
h = { foo: {bar: {baz: 1}}} h.dig(:foo, :bar, :baz) #=> 1 h.dig(:foo, :zot) #=> nil
[Validate]