how to delete item from array without id code example
Example 1: remove item from array by id
var myArr = [{id:'a'},{id:'myid'},{id:'c'}];
var index = arr.findIndex(function(o){
return o.id === 'myid';
})
if (index !== -1) myArr.splice(index, 1);
Example 2: typescript remove an item from array
myArray.splice(index, 1); // insert index and then amount to remove
// from that index