我有这样的事情:
var test={
arr : [1,2],
number : 5
}
(test.arr).push(3);
它说:"Uncaught TypeError: Cannot read property 'arr' of undefined "
。
那么如何将数字或字符串推入'test.arr'?
答案 0 :(得分:2)
你需要这样做:
test.arr.push(3);
这样:
var test={
arr : [1,2],
number : 5
}
test.arr.push(3);
console.log( test.arr ); //gives [1,2,3]