Script Preparation code:
AخA
 
var fruits = {
    "orange-id": {
        name: "Orange",
        taste: "sweet"
    },
    "apple-id": {
        name: "Apple",
        taste: "sour"
    }
};
var fruitIds = ["orange-id", "apple-id"];
Tests:
  • Object.values

     
    Object.values(fruits);
  • Mapping ids to object

     
    fruitIds.map(id => fruits[id]);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Object.values
    Mapping ids to object

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Chrome 105 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Object.values 6772920.0 Ops/sec
Mapping ids to object 7799824.5 Ops/sec