最佳答案
我需要能够在运行时合并两个(非常简单)JavaScript对象。例如,我想:
var obj1 = { food: 'pizza', car: 'ford' }var obj2 = { animal: 'dog' }
obj1.merge(obj2);
//obj1 now has three properties: food, car, and animal
有内置的方法来做到这一点吗?我不需要递归,也不需要合并函数,只需平面对象上的方法。