Create a new DefaultMap with a specified default value.
Time complexity: O(n)
Space complexity: O(n)
The default value to use for missing keys
Optionalentries: Iterable<readonly [unknown, unknown], any, any> | nullCreate a new DefaultMap with a specified function to generate default values.
Time complexity: O(n)
Space complexity: O(n)
Readonly[toReadonlysizeStatic Readonly[species]true if an element in the Map existed and has been removed, or false if the element does not exist.
boolean indicating whether an element with the specified key exists or not.
Returns an iterable of keys in the map
Returns an iterable of values in the map
Staticgroup
A
Mapthat has a default value for missing keys.Example
Example
Map