Concat对象?

时间:2013-07-21 21:14:11

标签: javascript jquery

我有两个具有相同结构的对象,我想使用Javascript将它们连接在一起。有一个简单的方法吗?

var num = { '0': 0, '1': 0, '2': 0, '3': 0 };
var let = { 'A':'1', 'B':'2', 'C':'3' }

1 个答案:

答案 0 :(得分:3)

你可以使用jQuery的.extend()

$.extend(num,let); // num will now be the merged object.

注意:每个重复索引都具有let

中的值