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
Adventure Racing
Unleashing the Thrill: Exploring the World of Sports Adventure Racing
In a world where athleticism meets adrenaline, sports adventure racing emerges as a vibrant...
By Dacey Rankins 2024-06-14 19:34:11 0 18K
Социальные проблемы
Охота. The Hunt. (2020)
Несколько человек имели неосторожность обсуждать в групповом чате охоту на людей. Некоторое время...
By Nikolai Pokryshkin 2022-10-22 16:28:04 0 33K
Productivity
What digital skills should I learn?
What Digital Skills Should I Learn? A decade ago, learning a digital skill often meant choosing...
By Michael Pokrovski 2026-05-29 22:22:53 0 1K
Business and Corporate Finance
How Do You Become a CFO? A Practical Guide to Reaching the Top of Finance
How Do You Become a CFO? A Practical Guide to Reaching the Top of Finance The Chief Financial...
By Leonard Pokrovski 2026-01-12 18:59:24 0 10K
Information Services
Information Services: The Backbone of the Digital Economy
In today’s increasingly connected world, information is one of the most valuable assets for...
By Dacey Rankins 2024-11-12 14:42:15 0 14K

BigMoney.VIP Powered by Hosting Pokrov