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

Revision 3 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);
    if (args.length === 0) {
      return function() {
        if (arguments.length === 0)
          return _self.call(_this);
        else if (arguments.length > 0)
          return _self.apply(_this, args);       
      }
    }
  
    return function() {
      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.