JavaScript Map

0
12كيلو بايت

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.

البحث
الأقسام
إقرأ المزيد
أخرى
The Grand Budapest Hotel. (2014)
A writer encounters the owner of an aging high-class hotel, who tells him of his early years...
بواسطة Leonard Pokrovski 2023-03-25 20:07:07 0 28كيلو بايت
Business
How Do I Manage Stage Fright?
Stage fright is one of the most common human experiences. Students, adults, teachers, performers,...
بواسطة Dacey Rankins 2025-12-11 16:36:37 0 5كيلو بايت
Life Issues
Intimacy. (2001)
A failed London musician meets once a week with a woman for a series of intense sexual encounters...
بواسطة Leonard Pokrovski 2023-05-23 16:49:21 0 36كيلو بايت
Human Resources
What Are Compliance Requirements in Offshoring?
When companies engage in offshoring, they operate across multiple legal, regulatory, and cultural...
بواسطة Dacey Rankins 2026-04-01 20:53:18 0 932
Business
Do We Really Need to Meet?
Questioning the Necessity of Meetings in the Modern Workplace Meetings have long been a staple...
بواسطة Dacey Rankins 2025-07-31 12:11:30 0 14كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov