I have an array of objects:
var items = [{ id: 1, text: \"test1\" }, { id: 2, text: \"test2\" }, { id: 3, text: \"test3\"}];
I have the fol
Traverse the array by using a plain loop and then remove the matching item by using splice():
for( var i=0; i