Run details:
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
Mac OS X 10.15.7
Desktop
4 years ago
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
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();