添加以向数组内的对象添加值

时间:2014-05-04 04:15:16

标签: javascript arrays json

我有一个包含1个项目的数组。它看起来像这样......

[ { one: "one", two: "two" } ]

我想添加到对象,所以它看起来像这样......

[ { one: "one", two: "two", three: "three" } ]

我该怎么做?

1 个答案:

答案 0 :(得分:2)

基本Javascript。

var array = [ { one: "one", two: "two" } ];


array[0].three = 'three';

表示array在索引0设置three等于"three"

PS:这个,你也不是在使用JSON