Oldobject = {'name':'Joe','age':12};
newObject = {'address':'XXX'};
我希望获得如下结果:
{'name':'Joe','age':12,'address':'XXX' }
我用
Oldobject.address = newObject
有没有优雅的方法来做到这一点?
答案 0 :(得分:1)
for (var property in Oldobject) {
newObject[property] = Oldobject[property];
}
答案 1 :(得分:0)
使用for... in
循环,例如:
for( var property in newObject ){
OldObject[property] = newObject[property]
}
这会将newObject
中的所有内容放入oldObject
。