JavaScript Map

0
13KB

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.

Suche
Kategorien
Mehr lesen
Automotive
Auto Mobile Businesses
How do they make money in the auto business?When you are a motorist, it may seem to you that...
Von FWhoop Xelqua 2023-07-20 17:09:41 0 29KB
Business
Product Management vs. Project Management (or vs. Product Ownership or Product Marketing)?
Although the terms are often confused, product management, project management, product ownership,...
Von Dacey Rankins 2025-08-15 20:34:17 0 9KB
Walking
What is the difference between race walking and running and from ordinary walking
This is walking - but the technique of its performance is far from classical walking. It's not a...
Von FWhoop Xelqua 2022-11-04 19:06:30 0 24KB
Business
How Do Time Spans Affect Our Understanding of Growth?
Growth is not a single, uniform process. Its meaning and significance shift dramatically...
Von Dacey Rankins 2025-09-09 14:28:17 0 7KB
Business
What books should startup founders read?
Building a startup is an exhilarating yet daunting journey. From ideation to scaling, startup...
Von Dacey Rankins 2025-04-14 13:34:49 0 12KB

BigMoney.VIP Powered by Hosting Pokrov