ts array remove by index code example
Example: typescript remove object from array
const index = myArray.indexOf(key, 0);
if (index > -1) {
myArray.splice(index, 1);
}
const index = myArray.indexOf(key, 0);
if (index > -1) {
myArray.splice(index, 1);
}