JavaScript Map

0
12K

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.

Search
Categories
Read More
Nature and Science
Princess Mononoke. (1997)
On a journey to find the cure for a Tatarigami's curse, Ashitaka finds himself in the middle of a...
By Leonard Pokrovski 2023-01-04 20:54:21 0 24K
Business
Is Executive Coaching Confidential?
Yes—executive coaching is confidential. Confidentiality is one of the core principles that...
By Dacey Rankins 2025-07-22 11:03:28 0 6K
Marketing and Advertising
Who Is the Target Audience, and What Role Do They Play in Positioning?
Introduction: The Heart of Every Brand Strategy No matter how innovative your product or...
By Dacey Rankins 2025-10-23 15:37:44 0 3K
Marketing and Advertising
Why Do Only Some of My Fans See My Posts? Understanding Facebook’s Algorithm
Introduction If you manage a Facebook Page for your business, you may have noticed that only a...
By Dacey Rankins 2025-10-03 21:11:12 0 5K
Addictions
Addiction: Causes, Effects, and Pathways to Recovery
Addiction is a complex, multifaceted condition characterized by compulsive engagement in...
By Dacey Rankins 2024-10-18 18:56:01 0 22K

BigMoney.VIP Powered by Hosting Pokrov