JavaScript Map

0
5Кб

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.

Поиск
Категории
Больше
Internet
Google ads - Youtube ads
Part 5: Google Shopping / Google ads (bigmoney.vip) YouTube advertising in numbers YouTube is...
От FWhoop Xelqua 2023-02-09 16:05:55 0 12Кб
Life Issues
Shutter Island. (2010)
In 1954, a U.S. Marshal investigates the disappearance of a murderer who escaped from a hospital...
От Leonard Pokrovski 2023-02-16 13:03:05 1 10Кб
Business
How Social PR Works
The values that brands convey affect consumer choices. They like to buy products from socially...
От Dacey Rankins 2024-09-09 16:47:08 0 5Кб
Programming
Python Tips
Getting a "f-string expression part cannot include a backslash" Synatx error? You can create a...
От Jesse Thomas 2023-02-14 21:54:58 0 4Кб
Financial Services
The structure of costs in the short run
Key points Looked at from a short-run perspective, a firm’s total costs can...
От Mark Lorenzo 2023-07-13 20:18:32 0 5Кб
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov