JavaScript Map

0
13K

Map objects are collections of key-value pairs. A key in the Map may only occur once; it is unique in the Map's collection. A Map object is iterated by key-value pairs — a for...of loop returns a 2-member array of [key, value] for each iteration. Iteration happens in insertion order, which corresponds to the order in which each key-value pair was first inserted into the map by the set() method (that is, there wasn't a key with the same value already in the map when set() was called).

The specification requires maps to be implemented "that, on average, provide access times that are sublinear on the number of elements in the collection". Therefore, it could be represented internally as a hash table (with O(1) lookup), a search tree (with O(log(N)) lookup), or any other data structure, as long as the complexity is better than O(N).

Key equality

Value equality is based on the SameValueZero algorithm. (It used to use SameValue, which treated 0 and -0 as different. Check browser compatibility.) This means NaN is considered the same as NaN (even though NaN !== NaN) and all other values are considered equal according to the semantics of the === operator.

Căutare
Categorii
Citeste mai mult
Marketing and Advertising
What Are Common Advertising Mistakes?
Advertising doesn’t usually fail because “ads don’t work.”It fails...
By Dacey Rankins 2026-01-05 23:58:29 0 5K
Television
FOX 5, Live TV New York USA
New York news, weather, traffic and sports from FOX 5 NY serving New York City, Long Island, New...
By Nikolai Pokryshkin 2022-09-15 08:32:41 0 46K
Business
Email Marketing: How to Increase Sales with Email
Email Marketing: How to Increase Sales with Email Email marketing remains one of the most...
By Dacey Rankins 2024-09-04 15:26:17 0 14K
Museums and Archives
Preserving History: A Glimpse into the Latest from Museums and Archives
Preserving History: A Glimpse into the Latest from Museums and Archives Museums and archives are...
By Leonard Pokrovski 2024-05-06 17:46:30 0 20K
Human Resources
What is the Role of HR in a Company?
In modern organizations, the Human Resources (HR) function plays a far more significant role than...
By Dacey Rankins 2026-03-18 16:28:52 0 2K

BigMoney.VIP Powered by Hosting Pokrov