delete data from array in javascript and update array lisst code example
Example 1: js remove specific 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 2: how to remove an element from an array javascript
let myArray = [3, 1, 4, 1, 5, 2];
let unwantedElementIndex = 3;
myArray.splice(unwantedElementIndex, 1);
let myArray = ["[email protected]", "wrong@[email protected]", "..."];
const emailRegexp = ____;
let allCorrectEmails = myArray.filter(element => emailRegexp.test(element));