remove function item from array javascript 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);