Retire el elemento único de la matriz en Angular
deleteMsg(msg:string) {
const index: number = this.data.indexOf(msg);
if (index !== -1) {
this.data.splice(index, 1);
}
}
2 Programmers 1 Bug