[Object, Object, Object, Object]
Object{
id:33,
val:'a'
},
Object{
id:56,
val:'b'
},
Object{
id:77,
val:'a'
},
Object{
id:89,
val:'d'
}
Now I want to delete the Object where id = 56
How can I do that using js?
There is the result I want.
[Object, Object, Object]
Object{
id:33,
val:'a'
},
Object{
id:77,
val:'a'
},
Object{
id:89,
val:'d'
}
Thanks.