JavaScript Map

0
12K

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.

Căutare
Categorii
Citeste mai mult
Искусство, культура и развлечения
Последний Вермеер. The Last Vermeer. (2020)
Бывший участник нидерландского движения Сопротивления Джозеф Пиллер расследует дело...
By Nikolai Pokryshkin 2022-09-25 17:12:33 0 32K
Научная фантастика и фэнтези
Как приручить дракона. How to Train Your Dragon. (2010)
Вы узнаете историю подростка Иккинга, которому не слишком близки традиции его героического...
By Nikolai Pokryshkin 2023-04-07 13:57:17 0 35K
Organizations
Helpful Health Organizations: Promoting Well-Being and Access to Care
Health is one of the most critical aspects of human life, influencing not only individual...
By Dacey Rankins 2024-11-11 16:16:16 0 10K
Business
What Are the Top Priorities or Expectations for This Role in the First 6 Months?
Understanding the top priorities for a role early on can help you decide whether it’s the...
By Dacey Rankins 2025-08-12 15:31:43 0 7K
Business
Frequency of One-on-One Meetings: Do I Have to Run Weekly 1:1s?
How Often Is Often Enough? One-on-one meetings (1:1s) are among the most important tools for...
By Dacey Rankins 2025-08-01 14:09:35 0 8K

BigMoney.VIP Powered by Hosting Pokrov