var o = {foo: {bar: {baz: 42}}}; alert(o.foo.bar.baz); var p = o.foo.bar; alert(p.baz); with(o.foo.bar){ alert(baz); }