Script Preparation code:
AخA
 
function test(msg) {
  var d = msg;
}
Tests:
  • direct call

     
    test("Hello");
  • bind

     
    test.bind(null, "Hello")();
  • call

     
    test.call(null, "Hello");
  • apply

     
    test.apply(null, ["Hello"]);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    direct call
    bind
    call
    apply

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36
Chrome 135 on Windows
View result in a separate tab
Test name Executions per second
direct call 209005536.0 Ops/sec
bind 182902592.0 Ops/sec
call 178690048.0 Ops/sec
apply 180382464.0 Ops/sec