JavaScript Map

0
12KB

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.

Suche
Kategorien
Mehr lesen
Business
What is corporate culture and why do organizations need it?
What is corporate culture and why do organizations need it? The concept of corporate...
Von Leonard Pokrovski 2024-08-13 22:16:13 0 17KB
Marketing and Advertising
What Is David Ogilvy’s Biography?
Few names in advertising carry as much weight as David Ogilvy. Often referred to as the father of...
Von Dacey Rankins 2026-01-07 14:24:17 0 3KB
Marketing and Advertising
What Platforms Support Retargeting? A Complete Guide to the Top Retargeting Networks in 2026
  What Platforms Support Retargeting? A Complete Guide to the Top Retargeting Networks in...
Von Dacey Rankins 2026-02-13 20:07:03 0 2KB
Business
What Are the Types of Analytics?
In today’s business and technology environment, data is often described as the “new...
Von Dacey Rankins 2025-08-28 17:42:16 0 4KB
Business
What’s the Difference Between User Retention and Churn?
When businesses measure customer health, two metrics consistently come up: retention and churn....
Von Dacey Rankins 2025-09-16 16:33:48 0 4KB

BigMoney.VIP Powered by Hosting Pokrov