javascript 질문
본문
var test = [];
test.push({
"data": {
"key": "no1",
"a": "a",
"b": "b"
},
"data": {
"key": "no2",
"a": "a",
"b": "b"
}
});
코드가 저렇게 되어있으면 test에 데이타를 push하는데
key가 no2인 data안에다가 또 하나를 추가할려 했거든요 그래서
test[i].data.push({"c": "c"}); 라고 했는데 오류가 나네요
!-->답변 1
var test = [] ;
test.push({
"data": {
"key": "no1",
"a": "a",
"b": "b"
}
},
{
"data": {
"key": "no2",
"a": "a",
"b": "b"
}
});
test[1].data.c = "c";
답변을 작성하시기 전에 로그인 해주세요.