Answers for "best way to delete object in array on javascript"

2

locate and delete an object in an array

// 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);
Posted by: Guest on August-06-2020
2

how to remove an object from an array javascript

someArray.splice(x, 1);// if you want to remove element at position x
Posted by: Guest on March-29-2021

Code answers related to "best way to delete object in array on javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language