For example say I've got the following object:
person = {firstname:"Freddy", lastname:"Fish", age:15}
In this object I would like to replace the first and lastname of the person.
Instead of using
person.firstname = "Earthworm";
person.lastname = "Jim";
I would like to use something like
person += {firstname:"Earthworm", lastname: "Jim"}