JavaScript Map

0
12K

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.

Search
Categories
Read More
Business
What Mistakes Should I Avoid When Trying to Close a Sale?
Closing a sale is one of the most critical steps in the sales process, yet it’s also one of...
By Dacey Rankins 2025-11-19 20:11:30 0 3K
Marketing and Advertising
How Do I Start Online Advertising? A Step-by-Step Guide
Starting online advertising can feel overwhelming. With so many platforms, formats, metrics, and...
By Dacey Rankins 2026-01-28 16:00:59 0 1K
Internet
15 Free Tools for SEO Promotion
Website promotion is impossible without the use of various services. After all, with their help,...
By FWhoop Xelqua 2023-01-26 18:01:13 0 30K
История
Унесённые ветром. Gone with the Wind. (1939)
Могучие ветры Гражданской войны в один миг уносят беззаботную юность южанки Скарлетт О`Хара,...
By Nikolai Pokryshkin 2023-03-03 15:06:58 0 22K
Business
What are the Benefits of Being a Solopreneur?
The rise of the digital age has given birth to a new generation of business...
By Dacey Rankins 2025-02-12 15:16:34 0 11K

BigMoney.VIP Powered by Hosting Pokrov