remove item from middle of array javascript code example
Example 1: remove a particular element from array
var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");
colors.splice(carIndex, 1);
Example 2: delete from array javascript
var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];var removed = arr.splice(2,2);
Example 3: javascript array remove middle
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.splice(2,1);
Example 4: js delete all from array
var list = [1, 2, 3, 4];
function empty() {
list.length = 0;
}
empty();