Returns the object mapped to the given key object in the specified hashtable object.
Syntax
get( hashtable , key )
hashtable.get( key )
Parameters
hashtable
|
the hashtable object to search.
|
key
|
the key object to search for.
|
Returns
value
|
an object containing the value associated with the specified key.
null if key was not found
|
Example
value = ht.get( key )
|