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.

Поиск
Категории
Больше
Business
What is the Lean Startup Methodology?
In the fast-paced world of entrepreneurship, the Lean Startup methodology has become a...
От Dacey Rankins 2025-03-20 15:04:51 0 11Кб
Real Estate
Real Estate: A Cornerstone of the Economy
Real estate is one of the most significant sectors in the global economy, influencing not only...
От Dacey Rankins 2025-01-22 14:32:32 0 16Кб
Mental Health
Dyslexia: Pathophysiology
For most people who are right-hand dominant, the left hemisphere of their brain is more...
От Kelsey Rodriguez 2023-06-26 17:18:55 0 11Кб
Apartment Living
WHERE ARE THE MOST EXPENSIVE APARTMENTS IN EUROPE? THE ANSWER WILL SURPRISE YOU
WHERE ARE THE MOST EXPENSIVE APARTMENTS IN EUROPE? THE ANSWER WILL SURPRISE YOU New data...
От Leonard Pokrovski 2024-04-24 19:56:13 0 18Кб
Business
What Happens If I Don't Reach My Funding Goal?
Crowdfunding campaigns have become a popular way to raise money for a wide range of projects,...
От Dacey Rankins 2025-03-28 14:32:06 0 10Кб

BigMoney.VIP Powered by Hosting Pokrov