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.

Поиск
Категории
Больше
Social Issues
The Great Dictator. (1940)
Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid...
От Leonard Pokrovski 2022-12-21 19:24:05 0 23Кб
Научная фантастика и фэнтези
Индиана Джонс и последний крестовый поход. Indiana Jones and the Last Crusade. (1989)
На этот раз бесстрашный Индиана разыскивает самую таинственную реликвию в истории человечества...
От Nikolai Pokryshkin 2023-02-01 11:05:49 0 31Кб
Business
What Are the Common Presentation Mistakes?
Even the strongest ideas can fall flat if delivered poorly. Great presenters aren’t just...
От Dacey Rankins 2025-12-05 18:52:18 0 5Кб
Marketing and Advertising
How to Measure the Success of a Viral Marketing Campaign — Metrics That Matter
Introduction In marketing, “going viral” is often treated as the ultimate badge of...
От Dacey Rankins 2025-11-11 17:59:29 0 3Кб
Business
What Were the Major Challenges They Faced, and How Did They Overcome Them?
Every successful leader has a story shaped not just by victories, but by the challenges they...
От Dacey Rankins 2025-06-26 16:57:18 0 6Кб

BigMoney.VIP Powered by Hosting Pokrov