How to Remove a specific item from an array JavaScript

Remove a specific item from an array JavaScript– The splice() method changes the contents of an array by removing existing elements and/or adding new elements.

Code to Remove a specific item from an array JavaScript-

const array = [2, 5, 9];
console.log(array);
const index = array.indexOf(5);
if (index > -1) {
  array.splice(index, 1);
}
// array = [2, 9]
console.log(array);