JavaScript Map

0
13KB

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.

Rechercher
Catégories
Lire la suite
Productivity
How does remote work affect work-life balance?
How Does Remote Work Affect Work-Life Balance? Remote work has fundamentally reshaped how people...
Par Michael Pokrovski 2026-03-30 02:32:29 0 7KB
Социальные проблемы
Выжившая. Кровь и металл. Spare Parts. (2020)
После не особо удачного концерта участниц панк-группы похищают неизвестные, ампутируют им руки и...
Par Nikolai Pokryshkin 2022-10-16 19:01:18 0 47KB
Decision Making and Problem Solving
How do I fact-check information?
The Weight of the Unverified We are buried under stones we did not select. Every hour, a...
Par Michael Pokrovski 2026-06-26 20:22:22 0 671
Human Resources
How Does HR Recruit Employees?
Recruiting the right employees is one of the most important responsibilities of Human Resources...
Par Dacey Rankins 2026-03-19 18:34:17 0 5KB
Arts, Culture and Entertainment
Coco. (2017)
Aspiring musician Miguel, confronted with his family's ancestral ban on music, enters the Land of...
Par Leonard Pokrovski 2022-12-30 21:46:57 0 33KB

BigMoney.VIP Powered by Hosting Pokrov