let map = new Map();
let arr = [];
let obj = {};
const randomU32 = function() {
return Math.random() * (1 << 31) >>> 0;
}
const randomU32 = function() {
return Math.random() * (1 << 31) >>> 0;
}
const map = new Map();
map.set(randomU32(), true);
const randomU32 = function() {
return Math.random() * (1 << 31) >>> 0;
}
const arr = [];
arr[randomU32()] = true;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Map | |
Array |
Test name | Executions per second |
---|---|
Map | 904082.1 Ops/sec |
Array | 651574.4 Ops/sec |
Let's break down the provided benchmark and its different test cases.
Benchmark Overview
The benchmark compares two approaches: using a Map
data structure versus an array to store key-value pairs with unique keys. The goal is to measure which approach is faster for this specific use case.
Options Compared
Pros and Cons
Library Usage
None of the test cases use any external libraries.
Special JS Features/Syntax
There are no special JavaScript features or syntax used in these test cases. They only rely on built-in JavaScript constructs.
Benchmark Preparation Code
The script preparation code initializes:
Map
instance (let map = new Map();
)let arr = [];
)let obj = {};
)const randomU32 = function() { ... }
)The generated random number is used as the key for both the Map
and array insertions.
Test Cases
There are two test cases:
Map
using map.set(randomU32(), true);
.randomU32()
, which is assigned as the key: arr[randomU32()] = true;
.Latest Benchmark Result
The latest benchmark results show that the Map approach outperforms the Array approach, with higher executions per second on a Mobile device running Yandex Browser 23.
Other Alternatives
If you were to implement this benchmark using other programming languages or data structures, here are some alternatives:
Keep in mind that the specific results would depend on the chosen data structure, implementation, and language.