Skip to content

Instantly share code, notes, and snippets.

@rebazomar121
Forked from scottopolis/splice-object-array.js
Last active May 13, 2022 20:17
Show Gist options
  • Save rebazomar121/8305af771599646aaf9ee936516e57d1 to your computer and use it in GitHub Desktop.
Save rebazomar121/8305af771599646aaf9ee936516e57d1 to your computer and use it in GitHub Desktop.
Remove object from array of objects in Javascript
// we have an array of objects, we want to remove one object using only the id property
const apps = [{id:34,name:'My App',another:'thing'},{id:37,name:'My New App',another:'things'}];
// get index of object with id of 37
const removeIndex = apps.findIndex( item => item.id === 37 );
// remove object
apps.splice( removeIndex, 1 );
// get index of object with id:37
var removeIndex = apps.map(function(item) { return item.id; }).indexOf(37);
// remove object
apps.splice(removeIndex, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment