Skip to content

Instantly share code, notes, and snippets.

@thomijasir
Forked from scottopolis/splice-object-array.js
Created March 22, 2018 06:59
Show Gist options
  • Save thomijasir/d2fc4b6040a24bc3502521288c906d14 to your computer and use it in GitHub Desktop.
Save thomijasir/d2fc4b6040a24bc3502521288c906d14 to your computer and use it in GitHub Desktop.
Remove object from array of objects in Javascript
// source: http://stackoverflow.com/questions/16491758/remove-objects-from-array-by-object-property
// we have an array of objects, we want to remove one object using only the id property
var apps = [{id:34,name:'My App',another:'thing'},{id:37,name:'My New App',another:'things'}];
// 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