JavaScript Map

0
13K

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
Marketing and Advertising
Many Campaigns Fail Because Inbound Volume is Low or the Buyer Doesn’t Convert — Does Marketing Even Work for B2B?
It’s a familiar story in B2B organizations: marketing launches campaigns, invests in...
By Dacey Rankins 2025-09-22 15:39:57 0 15K
Decision Making and Problem Solving
Can screen time affect memory?
The mind is not a warehouse, and it is certainly not a hard drive. We operate under the...
By Michael Pokrovski 2026-07-12 21:59:41 0 517
Business
PaaS Use Cases: Where Platform as a Service Creates the Most Business Value
Most organizations adopt Platform as a Service (PaaS) for the wrong reason. They believe they're...
By Dacey Rankins 2026-07-13 21:07:28 0 1K
Marketing and Advertising
How Do I Measure the Success of Social Media Marketing (ROI)?
Measuring success in social media marketing is one of the biggest challenges for businesses of...
By Dacey Rankins 2025-11-03 15:00:19 0 26K
Science Fiction and Fantasy
Groundhog Day (1993)
A narcissistic, self-centered weatherman finds himself in a time loop on Groundhog Day, and the...
By Leonard Pokrovski 2023-06-24 20:18:36 0 41K

BigMoney.VIP Powered by Hosting Pokrov