Dynamic arguments to the constructor

Benchmark created by gobwas on


Description

Test which way of creation object by given constructor and ARRAY of arguments are faster: + Fake constructor creation; + Function.prototype.bind method

Setup

function MyClass(a,b,c) {
        this.a = a;
        this.b = b;
        this.c = c;
    }
    
    function create1(ctor, args){
      function Service(){};
      Service.prototype = ctor.prototype;
      var s = new Service();
      ctor.apply(s, args);
      return s;
    }
    
    function create2(ctor, args) {
        return new (Function.prototype.bind.apply(ctor, [null].concat(args)));
    }

Test runner

Ready to run.

Testing in
TestOps/sec
Fake constructor
create1(MyClass, [1,2,3])
ready
Function.prototype.bind
create2(MyClass, [1,2,3])
ready

Revisions

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