``` var obj = { hello: { world: { cake: 5 } } } debugDeepPropertyAccess(obj, "hello"); obj.hello.world.cake = 8; // hits breakpoint ``` Would have to go through it recursively... And if new keys are added I think I'd have to use Proxy objects.
Would have to go through it recursively... And if new keys are added I think I'd have to use Proxy objects.