JavaScript Map

0
7KB

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.

Search
Nach Verein filtern
Read More
Жизненные вопросы
Яблоки. Apples. (2021)
В Афинах разгорается необычная эпидемия, люди внезапно теряют память. Жертвой становится и Арис...
Von Nikolai Pokryshkin 2022-09-16 20:31:23 0 21KB
Научная фантастика и фэнтези
Звёздные войны: Эпизод 5 — Империя наносит ответный удар. Star Wars: Episode V - The Empire Strikes Back. (1980)
Борьба за Галактику обостряется в пятом эпизоде космической саги. Войска Императора начинают...
Von Nikolai Pokryshkin 2022-11-12 13:20:55 0 26KB
Programming
Java vs JavaScript
What is Java? Java is a statically typed object-based programming language. Its ability to run...
Von Jesse Thomas 2023-06-08 21:18:53 0 7KB
Football
ChatGPT The Beautiful Game: A Celebration of Football
Football, known as soccer in some parts of the world, transcends mere sport to become a global...
Von Dacey Rankins 2024-06-25 19:19:01 0 14KB
Business
Factor of production
What is a factor of production? DefinitionFactors of production are the limited resources needed...
Von Dacey Rankins 2024-09-19 17:12:05 0 12KB
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov