var list=[
{ title: 'A',name: 'A1' },
{ title: 'B' , name: 'B1'}
]
list.push({ title: 'C',name: 'C1'}) //往数组中push数据
console.log(list)
var newArr = list.filter(function (item) {
return item.title.match(/A/) //将数组中的某个对象去掉
})
console.log(newArr)//0: {title: "A", name: "A1"}
console.log(list)//[{ title: 'B' , name: 'B1'},{ title: 'C',name: 'C1'}]