Script Preparation code:
x
 
let map = new Map();
let arr = [];
let obj = {};
const randomU32 = function() {
    return Math.random() * (1 << 31) >>> 0;
}
Tests:
  • Map

     
    const randomU32 = function() {
        return Math.random() * (1 << 31) >>> 0;
    }
    const map = new Map();
    map.set(randomU32(), true);
  • Array

     
    const randomU32 = function() {
        return Math.random() * (1 << 31) >>> 0;
    }
    const arr = [];
    arr[randomU32()] = true;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Map
    Array

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Linux; arm_64; Android 11; Redmi Note 8T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/23.7.5.95.00 SA/3 Mobile Safari/537.36
Yandex Browser 23 on Android
View result in a separate tab
Test name Executions per second
Map 904082.1 Ops/sec
Array 651574.4 Ops/sec