remove elements in array javascript code example
Example 1: remove an element from array
var colors = ["red", "blue", "car","green"];
// op1: with direct arrow function
colors = colors.filter(data => data != "car");
// op2: with function return value
colors = colors.filter(function(data) { return data != "car"});
Example 2: how to delete object property of array javascript
array.forEach(function(v){ delete v.bad });