Script Preparation code:
x
 
var map = new Map([["0",1]]);
var array = [1];
var symbol = Symbol('next');
var object = {["0"]: 1, [symbol]: 1 };
var weakMap = new WeakMap([[object,1]])
var x = 0;
Tests:
  • Map.get

     
    x += map.get("0");
  • WeakMap.get

     
    x += weakMap.get(object)
  • array[0]

     
    x += array[0]
  • object.a

     
    x += object.a
  • object[symbol]

     
    x += object[symbol]
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Map.get
    WeakMap.get
    array[0]
    object.a
    object[symbol]

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 days ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36
Chrome 136 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Map.get 17832704.0 Ops/sec
WeakMap.get 17493770.0 Ops/sec
array[0] 18560010.0 Ops/sec
object.a 18386114.0 Ops/sec
object[symbol] 17309896.0 Ops/sec