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.

البحث
الأقسام
إقرأ المزيد
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 8كيلو بايت
Personal Development
What Is Personal Development?
What Is Personal Development? Personal development is the ongoing process of improving oneself...
بواسطة Michael Pokrovski 2026-02-02 21:14:59 0 2كيلو بايت
Marketing and Advertising
What Is Native Advertising?
As digital advertising has expanded across websites, social media platforms, and mobile apps,...
بواسطة Dacey Rankins 2026-01-06 14:23:52 0 2كيلو بايت
Marketing and Advertising
What Is Telemarketing? Understanding Its Role, Purpose, and Modern Transformation
Introduction Telemarketing is one of the most enduring and adaptable forms of direct marketing....
بواسطة Dacey Rankins 2025-11-05 14:36:13 0 5كيلو بايت
Productivity
How do I balance career growth with personal life?
How Do I Balance Career Growth with Personal Life? Balancing career growth with personal life is...
بواسطة Michael Pokrovski 2026-04-02 00:15:59 0 4كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov