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 |
function test(msg) {
var d = msg;
}
test("Hello");
test.bind(null, "Hello")();
test.call(null, "Hello");
test.apply(null, ["Hello"]);