Script Preparation code:
x
 
const fooKey = Symbol('fooSymbol')
class Foo {
    constructor(value) {
        this[fooKey] = true
        this.value = value
    }
}
let arr;
function prepare() {
    arr = Array.from({length:1000})
    for (let i = 0; i < arr.length; i++) {
        arr[i] = new Foo(i)
    }
}
function runInstanceof() {
    prepare();
    const match = arr.every((foo) => foo instanceof Foo);
    if (!match) throw new Error('fail!');
}
function runKeyIn() {
    prepare();
    const match = arr.every((foo) => fooKey in foo);
    if (!match) throw new Error('fail!');
}
Tests:
  • instanceof

     
    runInstanceof()
  • key in

     
    runKeyIn()
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    instanceof
    key in

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 29 days ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
instanceof 38963.6 Ops/sec
key in 40305.4 Ops/sec