JavaScript Map

0
11KB

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.

Suche
Kategorien
Mehr lesen
Искусство, культура и развлечения
Поющие под дождём. Singin' in the Rain. (1952)
Основа этого легендарного фильма – дюжина старых песен, написанных для различных...
Von Nikolai Pokryshkin 2023-01-07 11:22:38 0 27KB
Business
How Do I Migrate from Universal Analytics to GA4?
With the official sunset of Universal Analytics (UA) in July 2023, businesses that relied on UA...
Von Dacey Rankins 2025-09-01 09:25:37 0 2KB
Geld
What is National Insurance?
What is National Insurance? National Insurance (NI) is a system of contributions paid by workers...
Von Leonard Pokrovski 2025-09-17 20:13:09 0 2KB
Научная фантастика и фэнтези
Звёздные войны: Эпизод 5 — Империя наносит ответный удар. Star Wars: Episode V - The Empire Strikes Back. (1980)
Борьба за Галактику обостряется в пятом эпизоде космической саги. Войска Императора начинают...
Von Nikolai Pokryshkin 2022-11-12 13:20:55 0 33KB
Computer Science
Computer Science
Informatics is the science of methods and processes of collecting, storing,...
Von Michael Pokrovski 2024-03-21 23:29:27 0 27KB

BigMoney.VIP Powered by Hosting Pokrov