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.

البحث
الأقسام
إقرأ المزيد
Decision Making and Problem Solving
Why do discounts and sales work?
Why Do Discounts and Sales Work? The Strange Power of a Crossed-Out Number A person walks into...
بواسطة Michael Pokrovski 2026-06-09 05:06:28 0 2كيلو بايت
Human Resources
Why Is Facility Management Important?
Facility management is often one of the most overlooked yet essential components of...
بواسطة Dacey Rankins 2026-04-14 03:21:44 0 2كيلو بايت
Business
Factor of production
What is a factor of production? DefinitionFactors of production are the limited resources needed...
بواسطة Dacey Rankins 2024-09-19 17:12:05 0 18كيلو بايت
Marketing and Advertising
What Is CPC in Google AdWords?
In Google AdWords—now known as Google Ads—CPC, or cost per click, is one of the most...
بواسطة Dacey Rankins 2026-01-09 20:10:09 0 8كيلو بايت
Marketing and Advertising
What Should a Telemarketing Campaign Cost — and How Do You Budget It?
Introduction Telemarketing remains one of the most direct and measurable forms of customer...
بواسطة Dacey Rankins 2025-11-06 17:52:45 0 5كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov