Is there a way to set/modify an existing value with this? ``` var tee = { a: "hello", b: { b1: "goodbye", b2: "so long", b3: "adios" } } dot.update("tee.b.b2", tee, "good riddance"); // yield { a: "hello", b: { b1: "goodbye", b2: "good riddance", b3: "adios" } } ``` Is this possible, or something like it?
Is there a way to set/modify an existing value with this?
Is this possible, or something like it?