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.

Site içinde arama yapın
Kategoriler
Read More
Personal Finance
What is Social Security — and why some people fear it might “run out”
  What is Social Security — and why some people fear it might “run out”...
By Leonard Pokrovski 2025-12-10 22:50:41 0 4K
EĞİTİM BİLGİLERİ
How to study to become a doctor in different countries of the world
How to study to become a doctor in different countries of the world Australian National...
By Leonard Pokrovski 2024-04-15 21:48:43 0 24K
Programming
Python Append List
To append a list, the variable must be a list type. Once the variable is a list, you can then...
By Jesse Thomas 2023-02-21 23:16:43 0 12K
Mental Health
Psychosis: Disability
DisabilityThe classification of psychosis as a social disability is a common occurrence....
By Kelsey Rodriguez 2023-05-23 16:08:57 0 12K
Ужасы
Тихое место 2. A Quiet Place Part II. (2021)
474 дня прошло после нападения на Землю охотящихся на звук существ, семья Эбботт продолжает...
By Nikolai Pokryshkin 2022-09-19 21:39:05 0 28K

BigMoney.VIP Powered by Hosting Pokrov