const hero = [{'id' : 1, 'name' : 'hero1'}, {'id': 2, 'name' : 'hero2'}]; //remove hero1 const updatedHero = hero.filter(item => item.id !== 1);