JavaScript Map

0
13χλμ.

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.

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Philanthropy
Understanding Philanthropy: The Art of Giving Back
Understanding Philanthropy: The Art of Giving Back In a world often marked by division and...
από Leonard Pokrovski 2024-06-11 23:14:47 0 18χλμ.
Business
What Lessons or Leadership Principles Can I Learn from Their Lives?
Studying leaders offers actionable insights into decision-making, ethics, and vision. Common...
από Dacey Rankins 2025-08-13 21:15:01 0 6χλμ.
Ιστορίες
The Third Man. (1949)
Pulp novelist Holly Martins travels to shadowy, postwar Vienna, only to find himself...
από Leonard Pokrovski 2023-04-01 20:19:07 0 41χλμ.
Economics
What is the role of institutions in comparative economics?
What is the role of institutions in comparative economics? Comparative economics asks a simple...
από Leonard Pokrovski 2026-03-04 21:38:05 0 3χλμ.
Awards
Film Awards
Oscar Academy Awards, OscarLos Angeles, California, USA Golden Globes Los Angeles, California,...
από FWhoop Xelqua 2023-06-22 18:26:06 0 38χλμ.

BigMoney.VIP Powered by Hosting Pokrov