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.

Zoeken
Categorieën
Read More
Economics
Is environmental protection expensive?
Is Environmental Protection Expensive? The question arrives dressed as economics, but it is...
By Leonard Pokrovski 2026-05-27 00:27:56 0 5K
Social Issues
The Departed. (2006)
An undercover cop and a mole in the police attempt to identify each other while infiltrating an...
By Leonard Pokrovski 2022-12-01 20:36:46 0 25K
Camps
Embracing Adventure: The Magic of Recreational Camping
Embracing Adventure: The Magic of Recreational Camping Introduction: Amidst the hustle and...
By Leonard Pokrovski 2024-05-09 10:10:04 0 20K
Business
Effective Radio Advertising: How to Attract the Attention of Listeners
Radio advertising remains one of the most effective ways to get the word out about your product...
By Dacey Rankins 2024-09-18 17:01:00 0 19K
Personal Finance
What Are Tax Advantages?
What Are Tax Advantages? Meaning of Tax Benefits and Tax-Efficient Strategies Taxes are a part...
By Leonard Pokrovski 2025-12-19 23:11:57 0 5K

BigMoney.VIP Powered by Hosting Pokrov