Removes the given key object and its corresponding object from the specified hashtable object and returns the object at the given key object in the specified hashtable object.
Syntax
remove( hashtable , key )
hashtable.remove( key )
Parameters
hashtable
|
the hashtableobject use.
|
key
|
the key object to delete.
|
Returns
hashtable
|
without the key, value pair.
|
Example
ht = ht.remove( key )
|