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.

Cerca
Categorie
Leggi tutto
Economics
What Is Economic Growth?
What Is Economic Growth?GDP Growth, Development, and Productivity Economic growth is one of the...
By Leonard Pokrovski 2026-01-28 19:46:30 0 2K
Mental Health
Autism Spectrum: Diagnosis Pt.4
As of 2019, psychologists wait until a child showed initial evidence of ASD tendencies, then...
By Kelsey Rodriguez 2023-03-07 17:42:29 0 13K
Business
How Does Intrapreneurship Differ from Entrepreneurship?
In today’s fast-paced and innovation-driven world, both entrepreneurship and...
By Dacey Rankins 2025-04-17 12:47:02 0 10K
Personal Finance
When Is the Best Age to Take Social Security?
When Is the Best Age to Take Social Security? 62 vs. Full Retirement Age vs. 70 Deciding when...
By Leonard Pokrovski 2025-12-11 20:14:55 0 3K
Personal Finance
What Is Budgeting, and Why Is It Important?
What Is Budgeting, and Why Is It Important? Introduction Money is one of the most powerful...
By Leonard Pokrovski 2025-10-20 16:54:31 0 3K

BigMoney.VIP Powered by Hosting Pokrov