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.

Cerca
Categorie
Leggi tutto
Social Issues
Before the Flood (2016)
A look at how climate change affects our environment and what society can do to prevent the...
By Leonard Pokrovski 2023-07-13 20:22:51 0 35K
Marketing and Advertising
How Does Google AdWords Work?
Google AdWords—now known as Google Ads—may appear simple on the surface: advertisers...
By Dacey Rankins 2026-01-09 20:07:00 0 5K
Economics
How Can Development Economics Help Solve Global Problems?
How Can Development Economics Help Solve Global Problems? Development economics is a field...
By Leonard Pokrovski 2026-03-17 02:51:45 0 12K
Productivity
What actually works in real life?
What Actually Works in Real Life? In an age saturated with advice, frameworks, productivity...
By Michael Pokrovski 2026-03-25 18:43:28 0 2K
Business
How Does SEO Help With Lead Generation?
SEO (Search Engine Optimization) is one of the most powerful long-term lead generation strategies...
By Dacey Rankins 2025-12-17 21:46:19 0 8K

BigMoney.VIP Powered by Hosting Pokrov