¿Cuál es la forma más eficiente de clonar un objeto en JavaScript?
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