JavaScript Map

0
12KB

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.

Rechercher
Catégories
Lire la suite
Business
What Is a Work Breakdown Structure (WBS)?
A Work Breakdown Structure (WBS) is a key project management tool that breaks down the total...
Par Dacey Rankins 2025-05-15 14:47:07 0 9KB
Science Fiction and Fantasy
Metropolis. (1927)
In a futuristic city sharply divided between the working class and the city planners, the son...
Par Leonard Pokrovski 2023-01-29 15:36:07 0 22KB
Business
How to Identify and Qualify New Business Opportunities or Partnerships: A Complete 3,000-Word Guide
Introduction Identifying and qualifying business opportunities is one of the most critical...
Par Dacey Rankins 2025-11-17 18:30:02 0 4KB
Business
Situation, Task, Action, Result: Mastering the STAR Interview Method
When it comes to job interviews, few tools are as effective—or as widely...
Par Dacey Rankins 2025-06-23 14:34:49 0 10KB
Financial Services
Law of Demand
Key points The law of demand states that a higher price leads to a lower...
Par Mark Lorenzo 2023-01-25 14:05:14 0 17KB

BigMoney.VIP Powered by Hosting Pokrov