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.

Zoeken
Categorieën
Read More
Graphics
The World of Computer Graphics: An Art and Science
Computer graphics is an interdisciplinary field that combines art, technology, and mathematics to...
By Dacey Rankins 2024-10-10 16:40:19 0 26K
Marketing and Advertising
How to Use Social Media Effectively for Marketing
Introduction: Why Social Media Is Every Business’s Stage In today’s digital economy,...
By Dacey Rankins 2025-10-14 17:17:03 0 8K
Business
How to Track Customer Behavior Without Losing Sight of the Human Behind the Data
A few years ago, I sat in a meeting where someone proudly announced that the company now had...
By Dacey Rankins 2026-05-28 05:08:24 0 1K
Marketing and Advertising
What Is Retargeting? A Complete Guide to Re-Engaging Website Visitors and Lost Prospects
Most people who visit a website do not take action the first time. They browse, compare, get...
By Dacey Rankins 2026-02-13 19:50:55 0 3K
Economics
What Is the Role of Transportation in Commerce?
What Is the Role of Transportation in Commerce? Transportation is one of the quiet engines...
By Leonard Pokrovski 2026-02-19 19:29:07 0 5K

BigMoney.VIP Powered by Hosting Pokrov