get method

V? get(
  1. 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];
}