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
Personal Finance
What Are Good Financial Goals and How Do I Set Them?
What Are Good Financial Goals and How Do I Set Them? Financial goals are the stepping stones to...
By Leonard Pokrovski 2025-11-10 18:35:12 0 2K
Customer Service
What Is a Customer Experience Strategy?
A Customer Experience (CX) strategy is a structured plan that organizations use to design,...
By Dacey Rankins 2026-03-06 17:19:37 0 2K
Finance
What Distinguishes a Biography of a Financier from a Standard Finance Book?
What Distinguishes a Biography of a Financier from a Standard Finance Book? Finance literature...
By Leonard Pokrovski 2025-10-08 21:09:38 0 7K
Business
How Can Someone Become a CEO?
Becoming a Chief Executive Officer (CEO) is a career goal that many professionals aspire to...
By Dacey Rankins 2025-06-16 14:54:59 0 11K
Productivity
Is minimalist fashion expensive?
Is Minimalist Fashion Expensive? Minimalist fashion is often misunderstood as either an...
By Michael Pokrovski 2026-04-18 06:02:06 0 2K

BigMoney.VIP Powered by Hosting Pokrov