2013-01-10 128 views
1
test = [{ 
     property1: "value 1", 
     property2: "value 2" 
     }]; 

如果我這樣做推入數組對象

test.push[{property3: "value 3"}]; 

我得到一個新的對象。我想將它添加到現有的對象。

我該怎麼做?

回答

7
test[0].property3 = "value 3"; 

test[0]['property3'] = "value 3"; 
+0

尼斯。很簡單。 – jamjam