js remove if in array code example
Example: js remove from array by value
const index = array.indexOf(item);
if (index !== -1) array.splice(index, 1);
const index = array.indexOf(item);
if (index !== -1) array.splice(index, 1);