Script Preparation code:
x
 
var testObj = {}
for (let i = 0; i < 10000; i++) {
  const randomString = Math.random().toString(36).substr(2, 5);
  testObj[randomString] = randomString;
}
Tests:
  • keys

     
    console.log(Object.keys(testObj));
  • values

     
    console.log(Object.values(testObj));
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    keys
    values

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36 Edg/102.0.1245.39
Chrome 102 on Windows
View result in a separate tab
Test name Executions per second
keys 208.1 Ops/sec
values 127.8 Ops/sec