function calls: direct vs apply vs call vs bind (v2)

Revision 2 of this benchmark created by Stuart Carnie on


Setup

var f = function(){
      return this;
    };
    
    var that = {
      f: f
    };
    
    var bound = f.bind(that);
    
    var slice = Array.prototype.slice;
    Function.prototype.bind2 = function(_this) {
      var _self = this;
      var args = slice.call(arguments, 1);
    
      return function() {
        if (args.length === 0 && arguments.length === 0)
           return _self.call(_this);
        else if (arguments.length === 0)
           return _self.apply(_this, args);
    
        var a2 = args.contact(slice.call(arguments));
        return _self.apply(_this, a2);
      }
    }
    
    var bound2 = f.bind2(that);

Test runner

Ready to run.

Testing in
TestOps/sec
direct
that.f();
ready
apply
f.apply(that);
ready
call
f.call(that);
ready
bind
bound();
ready
bind2
bound2();
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.