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 Do I Really Want in Life?
It’s one of the biggest questions we all face: What do I really want in life? For some, the...
بواسطة Dacey Rankins 2025-09-08 08:04:46 0 9كيلو بايت
Marketing and Advertising
How Many People See a Billboard Each Day?
One of the most common questions advertisers ask when considering billboard advertising is simple...
بواسطة Dacey Rankins 2026-01-14 14:02:19 0 5كيلو بايت
Productivity
How to take notes while speed reading?
How to Take Notes While Speed Reading Without Destroying Your Momentum Most people discover a...
بواسطة Michael Pokrovski 2026-05-14 20:14:26 0 5كيلو بايت
Business
How to Make Big Money Without Employees
How to Make Big Money Without Employees Everyone who has ever dreamed of running a business...
بواسطة Leonard Pokrovski 2024-07-22 21:15:34 0 17كيلو بايت
Business
What Are Food Franchises?
Walk through almost any busy commercial district in America and you'll encounter them. A...
بواسطة Dacey Rankins 2026-06-03 21:57:52 0 2كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov