SyntaxFix
Write A Post
Hire A Developer
Questions
//declaration list: Array<any> = new Array<any>(); //remove item from an array removeitem() { const index = this.list.findIndex(user => user._id === 2); this.list.splice(index, 1); }