typescript pop element from array code example
Example: typescript remove element from array
let foo_object // Item to remove
this.foo_objects = this.foo_objects.filter(obj => obj !== foo_object);
let foo_object // Item to remove
this.foo_objects = this.foo_objects.filter(obj => obj !== foo_object);