JavaScript Map

0
12Кб

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.

Поиск
Категории
Больше
Personal Finance
What Is the Full Retirement Age?
What Is the Full Retirement Age? When people talk about retirement—especially in the...
От Leonard Pokrovski 2025-12-09 17:05:24 0 3Кб
Television
ABS, Live TV. Antigua & Barbuda.
The face of local broadcasting in Antigua and Barbuda. ABS TV is an Internet only TV channel...
От Nikolai Pokryshkin 2022-11-13 16:44:20 0 39Кб
Ужасы
Дальний космос. Stowaway (2021)
Экипаж космического корабля, направляющегося на Марс, обнаруживает на борту случайного пассажира...
От Nikolai Pokryshkin 2022-09-18 22:13:39 0 65Кб
Business and Corporate Finance
What Is the Difference Between a CFO and a VP of Finance?
What Is the Difference Between a CFO and a VP of Finance? In many organizations, especially...
От Leonard Pokrovski 2026-01-16 18:32:41 0 1Кб
Marketing and Advertising
How is Copywriting Different From Content Writing?
A Complete Guide to Understanding the Two Pillars of Modern Marketing In the digital age, words...
От Dacey Rankins 2025-09-30 15:59:37 0 4Кб

BigMoney.VIP Powered by Hosting Pokrov