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.

البحث
الأقسام
إقرأ المزيد
Mental Health
Psychosis: Cannabis
According to current studies, cannabis use is associated with increased risk of psychotic...
بواسطة Kelsey Rodriguez 2023-05-31 18:03:47 0 11كيلو بايت
Business
How Often and How Long Should Sessions Be?
When starting a coaching or mentoring relationship, one of the first questions that arises is:...
بواسطة Dacey Rankins 2025-07-09 14:30:31 0 6كيلو بايت
Programming
Build a simple 2D Game
Why simpler? In game development, simpler can mean a lot of things. With a physics engine,...
بواسطة Jesse Thomas 2023-06-29 20:03:01 0 15كيلو بايت
Programming
Python Fun Fact
There's a fact about Python that you might not know! Python has a module called "this". The...
بواسطة Jesse Thomas 2023-02-03 19:15:26 0 13كيلو بايت
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 34كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov