remove all object array unless index javascript code example

Example 1: js remove element from array

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);

Example 2: javascript remove object from array

var array = ['Object1', 'Object2'];

// SIMPLE
	array.pop(object); // REMOVES OBJECT FROM ARRAY (AT THE END)
	// or
	array.shift(object); // REMOVES OBJECT FROM ARRAY (AT THE START)

// ADVANCED
	array.splice(position, 1);
	// REMOVES OBJECT FROM THE ARRAY (AT POSITION)

		// Position values: 0=1st, 1=2nd, etc.
		// The 1 says: "remove 1 object at position"