<!--your preparation HTML code goes here-->
const d1 = {};
for (let i = 0; i < 10000; i++) {
d1[i] = i;
}
const d2 = new Map();
for (let i = 0; i < 10000; i++) {
d2.set(i, i);
}
let v;
for (let i1 = 0; i1 < 10000; i1++) {
v = d1[i1];
}
let v;
for (let i2 = 0; i2 < 10000; i2++) {
v = d2.get(i2);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Creation: Object | |
Creation: Map |
Test name | Executions per second |
---|---|
Creation: Object | 115147.3 Ops/sec |
Creation: Map | 152377.2 Ops/sec |
The provided benchmark compares the performance of accessing values from two different data structures in JavaScript: a plain object ({}
) and a Map
. The benchmark specifically tests how quickly values can be retrieved from these data structures after they've been populated with a set of integers from 0 to 9999.
Plain Object ({}
):
d1[i1]
), where d1
is the plain object initialized with key-value pairs.Map (Map
):
Map
object. The values are retrieved using the get
method (d2.get(i2)
), which is specifically designed for the Map
data structure.Pros:
Map
.Cons:
Object.prototype
unless specifically created with null as prototype.Pros:
Cons:
set()
and get()
.Map
can often outperform plain objects due to its better performance characteristics when it comes to dynamic additions or deletions.Map
will often depend on the specific requirements of the application, such as performance needs, complexity, and the types of keys used.Set
may be appropriate.Ultimately, the choice of data storage in JavaScript should be based on the requirements of the project, considering both performance metrics and ease of use for data manipulation.