javascript remove object in array by index code example
Example 1: remove array elements javascript
let value = 3
let arr = [1, 2, 3, 4, 5, 3]
arr = arr.filter(item => item !== value)
console.log(arr)
Example 2: js remove element from array
const array = [2, 5, 9];
console.log(array);
const index = array.indexOf(5);
if (index > -1) {
array.splice(index, 1);
}
console.log(array);
Example 3: remove a specific element from an array
array.splice(array.indexOf(item), 1);
Example 4: remove a value to an array of javascript
var data = [1, 2, 3];
data.splice(1, 1);
data.pop();