//Remove an object from an array by ID (or by other parameter)
person: Person = { id: 2, name: 'Maria' };
listOfPersons = [
{ id: 1, name: 'Jonas' },
{ id: 2, name: 'Maria' }
];
removePerson(person: Person): void {
this.listOfPersons = this.listOfPersons.filter(({ id }) => id !== person.id);
}