Script Preparation code:
x
 
window.A = class {
    a() {}
}
window.B = class {
    b = () => {};
}
window.C = class {
    constructor() {
        this.c = this.c.bind(this);
    }
    c() {}
}
Tests:
  • Call class method

     
    (new A()).a();
  • Call instance method

     
    (new B()).b();
  • Call bound method

     
    (new C()).c();
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Call class method
    Call instance method
    Call bound method

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
Chrome 85 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Call class method 6294433.5 Ops/sec
Call instance method 3080786.0 Ops/sec
Call bound method 5557000.5 Ops/sec