Category
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
Optional
entries: null | Iterable<readonly [unknown, unknown]>Create a new DefaultMap
with a specified function to generate default values.
Time complexity: O(n)
Space complexity: O(n)
Readonly
[toReadonly
sizeStatic
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.
A
Map
that has a default value for missing keys.Example
Example
Map