Deletes a property from an object, or removes an element from an array.
delete expression
The expression argument is a valid JScript expression that usually results in a property name or array element.
If the result of expression is an object, the property specified in expression exists, and the object will not allow it to be deleted, false is returned.
In all other cases, true is returned.