JavaScript Map

0
7K

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
Environment
Understanding the Business Environment: Key Factors and Their Impact on Success
In the world of business, the environment in which companies operate plays a significant role in...
By Dacey Rankins 2024-11-20 18:13:20 0 6K
Business
How Do I Know If It’s the Right Time to Seek External Funding?
Securing external funding is a major milestone in a startup's journey—but timing is...
By Dacey Rankins 2025-05-06 12:56:58 0 2K
Information Technology
History of Information Technology
The history of information technology dates back to long before the emergence of the modern...
By Dacey Rankins 2024-03-13 17:35:53 0 23K
Television
FOX 5, Live TV. Atlanta USA
Stream local news and weather, traffic and sports live from FOX 5 Atlanta. WAGA-TV, channel 5...
By Nikolai Pokryshkin 2022-09-16 08:21:12 0 24K
Business
How Do I Protect My Intellectual Property?
Protecting your intellectual property (IP) is one of the most important steps in securing the...
By Dacey Rankins 2025-03-03 14:53:24 0 4K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov