Hello, here is my problem:
When i set an object with another object, like this:
a = {"first":1, "second":2};
b = a;
And then i delete a property from the "a" object, it also deletes the property from the "b" object.
delete a.second;
Heres the jsFiddle