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.

البحث
الأقسام
إقرأ المزيد
Marketing and Advertising
How Can I Reduce YouTube Advertising Costs?
Advertising on YouTube can be highly effective—but without proper strategy, costs can...
بواسطة Dacey Rankins 2026-03-04 18:27:24 0 5كيلو بايت
Productivity
How many items should a minimalist own?
How Many Items Should a Minimalist Own? One of the most common questions people ask when...
بواسطة Michael Pokrovski 2026-04-09 20:01:30 0 2كيلو بايت
Science Fiction and Fantasy
Jurassic Park Anthology. (1993-2019) all movies
Jurassic Park (1993) The head of the company "In-Gen", Professor John Hammond, finds a way to...
بواسطة Leonard Pokrovski 2023-02-18 16:59:43 0 29كيلو بايت
Programming
Python lavalink.py
Lavalink.py is a wrapper for Lavalink which abstracts away most of the code necessary to use...
بواسطة Jesse Thomas 2023-04-19 20:17:31 0 11كيلو بايت
Business
What Are Common Execution Pitfalls in Startups?
Launching a startup is an exciting journey, but it’s also filled with hidden challenges...
بواسطة Dacey Rankins 2025-04-30 12:54:47 0 12كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov