Run details:
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
Windows
Desktop
25 days ago
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
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"]);