Was ist der effizienteste Weg, um ein Objekt in JavaScript zu tiefen?
Assuming that you have only properties and not any functions in your object, you can just use:
var newObject = JSON.parse(JSON.stringify(oldObject));
shafeeque