Using splice() (Modifies Original Array)
const array = [1, 2, 3, 4, 5];
const index = array.indexOf(3); // Find index of item to remove
if (index > -1) { // Only splice if item exists
array.splice(index, 1); // Remove 1 item at found index
}
console.log(array); // [1, 2, 4, 5]