get method
V?
get(
- K key
Get value by key
Parameters
key
: The key to get
Returns
- The value associated with the key
Implementation
V? get(K key) {
return this[key];
}
Get value by key
key
: The key to getV? get(K key) {
return this[key];
}