check value in array and remove javascript code example
Example: remove a value from array js
const index = array.indexOf(item);
if (index > -1) {
array.splice(index, 1);
}
const index = array.indexOf(item);
if (index > -1) {
array.splice(index, 1);
}