JavaScript Map

0
13كيلو بايت

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.

البحث
الأقسام
إقرأ المزيد
Business
What Universal Concerns Exist Around Growth?
Growth is a concept that stretches across every level of existence—from the individual to...
بواسطة Dacey Rankins 2025-09-09 14:27:01 0 6كيلو بايت
Marketing and Advertising
What Are Common Advertising Mistakes?
Advertising doesn’t usually fail because “ads don’t work.”It fails...
بواسطة Dacey Rankins 2026-01-05 23:58:29 0 5كيلو بايت
Business
Which forecasting method is best for my business?
In today’s dynamic business environment, forecasting is crucial for effective planning and...
بواسطة Dacey Rankins 2025-01-10 14:05:47 0 15كيلو بايت
Decision Making and Problem Solving
Do brain games improve memory?
The mind is not a warehouse, and it is certainly not a hard drive. We operate under the...
بواسطة Michael Pokrovski 2026-07-11 13:35:20 0 1كيلو بايت
Business
What Are Common Types of Mentoring? Exploring the Diverse Forms of Support and Growth
Mentoring is not a one-size-fits-all approach. As workplaces and professional needs evolve, so do...
بواسطة Dacey Rankins 2025-05-22 20:13:47 0 9كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov