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
Decision Making and Problem Solving
How is creative thinking different from critical thinking?
How Is Creative Thinking Different From Critical Thinking? The Moment Before You Decide There...
By Michael Pokrovski 2026-06-11 12:49:05 0 997
Business
Data Fabric
Data Fabric The concept of Data Fabric and the main elements of this concept It is an...
By Leonard Pokrovski 2024-08-26 21:59:54 0 20K
Economics
Why Is Development Economics Important?
Why Is Development Economics Important? Development economics is a branch of economics that...
By Leonard Pokrovski 2026-03-09 22:50:09 0 2K
Business
How Do I Tailor My Business Biography for Different Platforms (e.g., LinkedIn, Company Website)?
In the digital age, a business biography is a vital part of your professional presence. Whether...
By Dacey Rankins 2025-01-07 14:07:24 0 28K
Business
What’s Involved in Managing a Product’s Entire Lifecycle?
Every product, like a living organism, has a lifecycle. It begins with an idea, grows through...
By Dacey Rankins 2025-08-18 13:29:06 0 8K

BigMoney.VIP Powered by Hosting Pokrov