remove object from array in javascript code example
Example 1: how to remove element from array in javascript
var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");
colors.splice(carIndex, 1);
Example 2: javascript remove property from object
var person = {"first_name": "Billy","last_name": "Johnson"};
delete person.last_name;
Example 3: how to find and remove object from array in javascript
var id = 88;
for(var i = 0; i < data.length; i++) {
if(data[i].id == id) {
data.splice(i, 1);
break;
}
}
Example 4: remove object in array javascript
someArray.shift();
someArray = someArray.slice(1);
someArray.splice(0, 1);
someArray.pop();
someArray = someArray.slice(0, a.length - 1);
someArray.length = someArray.length - 1;
Example 5: javascript delete object from array
someArray.splice(x, 1);
Example 6: remove object from array javascript
someArray.splice(x, 1);