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
Business
How Can I Connect with Other Indie Hackers for Support and Collaboration?
Building a successful indie business can often feel like a lonely journey. As you work to develop...
By Dacey Rankins 2025-02-17 16:45:14 0 18K
Products and Shopping
A Comprehensive Guide to Health Products: Enhancing Wellness Naturally
In today’s fast-paced world, where people are constantly juggling work, family, and social...
By Dacey Rankins 2024-11-22 14:50:52 0 16K
Programming
Python Microsoft Store API
The following example demonstrates how to obtain an Azure AD access token that you can...
By Jesse Thomas 2023-04-25 21:48:29 0 15K
Decision Making and Problem Solving
What is design thinking?
What Is Design Thinking? Most people assume great ideas begin with inspiration. A flash of...
By Michael Pokrovski 2026-06-24 20:26:15 0 1K
Conventions
User Agreement for Games (EULA), why and how it is drawn up
Most likely, each of us at least once in his life when first launching an application or game...
By FWhoop Xelqua 2022-11-20 19:36:06 0 25K

BigMoney.VIP Powered by Hosting Pokrov