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.

Site içinde arama yapın
Kategoriler
Read More
Business
What Is a Qualified Lead?
Understanding what a qualified lead is can completely change your results in sales. Many people...
By Dacey Rankins 2025-12-15 17:39:31 0 7K
Business
Service vs. Product-Based Business?
At some point, nearly every entrepreneur confronts the same uncomfortable question: Should you...
By Dacey Rankins 2026-05-13 20:57:16 0 3K
Productivity
What are the best productivity tools?
What Are the Best Productivity Tools? Productivity tools are designed to help you organize...
By Michael Pokrovski 2026-02-16 15:45:27 0 8K
Kullanıcı durum etkin
Navigating the Complexities of Disability in Modern Society
Navigating the Complexities of Disability in Modern Society Introduction:In the mosaic of human...
By Leonard Pokrovski 2024-06-06 18:38:08 0 27K
Programming
Discord.py vs Nextcord
When making a bot on Discord, you've probably ran into 2 libraries that looks really similar. In...
By Jesse Thomas 2023-02-07 21:56:18 0 13K

BigMoney.VIP Powered by Hosting Pokrov