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.

Căutare
Categorii
Citeste mai mult
Science Fiction and Fantasy
Star Wars: Episode V - The Empire Strikes Back. (1980)
After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker...
By Leonard Pokrovski 2022-11-13 20:22:35 0 26K
Personal Finance
How Do Cost-of-Living Adjustments (COLA) Work?
How Do Cost-of-Living Adjustments (COLA) Work? What Is Next Year’s COLA? Everyone notices...
By Leonard Pokrovski 2025-12-12 22:29:53 0 6K
Money
What is Stamp Duty?
What is Stamp Duty? Stamp duty is a government-imposed tax levied on certain legal documents and...
By Leonard Pokrovski 2025-09-28 21:45:52 0 6K
Искусство, культура и развлечения
Шерлок младший. Sherlock Jr. (1924)
Б.Китон - киномеханик, который мечтает быть знаменитым детективом, как Шерлок Холмс. Влюбленный в...
By Nikolai Pokryshkin 2023-04-02 21:01:16 0 43K
Sport
Ford v Ferrari. (2019)
American car designer Carroll Shelby and driver Ken Miles battle corporate interference and the...
By Leonard Pokrovski 2023-04-14 17:05:21 0 28K

BigMoney.VIP Powered by Hosting Pokrov