reove an object from an array code example
Example: 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"