const index = myArray.indexOf(key, 0); if (index > -1) { myArray.splice(index, 1); }
myArray.splice(index, 1); // insert index and then amount to remove // from that index