我正在寻找一种将两个关联数组或对象组合成一个的内置方法。如果有不同,请在 Adobe Air 中使用 webkit。但基本上我有两个对象或关联数组,如果你愿意的话:
var obj1 = { prop1: "something", prop2 "anotherthing" };
var obj2 = { prop3: "somethingelse" };
我想合并它们并创建一个具有上述两个对象的所有组合键和值的对象:
var obj3 = obj1.merge( obj2 ); //something similar to array's concat maybe?
alert(obj3.prop1); //alerts "something"
alert(obj3.prop2); //allerts "anotherthing"
alert(obj3.prop3); //alerts "somethingelse"
有任何内置功能可以做到这一点,还是我必须手动做到这一点?