JavaScriptのArrayプッシュ問題を追加または更新JavaScriptのArray
私はオブジェクトを持っている:
people: [{name: peter, age: 27, email:'[email protected]'}]
私がプッシュする:
people.push({
name: 'John',
age: 13,
email: '[email protected]'
});
people.push({
name: 'peter',
age: 36,
email: '[email protected]'
});
最終的に私はしたいです:
people: [
{name: 'peter', age: 36, email:'[email protected]'},
{name: 'john', age: 13, email:'[email protected]'},
]
私はキーを持っていませんが、emai lはユニークです
問題は何ですか?エントリが重複していますか? –
結果の配列に末尾のカンマを除いてすべて正しいように見えます –
http://stackoverflow.com/help/how-to-ask – dabadaba