Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In JavaScript, I want to create an object instance (via the new operator), but pass an arbitrary number of arguments to the constructor. Is this possible?

What I want to do is something like this (but the code below does not work):

function Something(){
    // init stuff
}
function createSomething(){
    return new Something.apply(null, arguments);
}
var s = createSomething(a,b,c); // 's' is an instance of Something

The Answer

From the responses here, it became clear that there's no in-built way to call .apply() with the new operator. However, people suggested a number of really interesting solutions to the problem.

My preferred solution was this one from Matthew Crumley (I've modified it to pass the arguments property):

var createSomething = (function() {
    function F(args) {
        return Something.apply(this, args);
    }
    F.prototype = Something.prototype;

    return function() {
        return new F(arguments);
    }
})();
share|improve this question
1  
[Matthew Crumley's solution][1] in CoffeeScript: construct = (constructor, args) -> F = -> constructor.apply this,args F.prototype = constructor.prototype new F createSomething = (()-> F = (args) -> Something.apply this.args F.prototype = Something.prototype return -> new Something arguments )() [1]: stackoverflow.com/questions/1606797/… – Benjie Sep 6 '11 at 14:28

16 Answers

up vote 80 down vote accepted

Here's a generalized solution that can call any constructor (except native constructors that behave differently when called as functions, like String, Number, Date, etc.) with an array of arguments:

function construct(constructor, args) {
    function F() {
        return constructor.apply(this, args);
    }
    F.prototype = constructor.prototype;
    return new F();
}

An object created by calling construct(Class, [1, 2, 3]) would be identical to an object created with new Class(1, 2, 3).

You could also make a more specific version so you don't have to pass the constructor every time. This is also slightly more efficient, since it doesn't need to create a new instance of the inner function every time you call it.

var createSomething = (function() {
    function F(args) {
        return Something.apply(this, args);
    }
    F.prototype = Something.prototype;

    return function(args) {
        return new F(args);
    }
})();

The reason for creating and calling the outer anonymous function like that is to keep function F from polluting the global namespace. It's sometimes called the module pattern.

share|improve this answer
1  
Thanks Matthew. Interesting to call a closure on the fly. Although your example shows the calling function allowing just one argument (an array of args), I guess this could be modified to have it pass on the arguments var instead. – Premasagar Oct 23 '09 at 11:04
There have been some excellent responses in this thread. I'm going to accept this one as my preferred solution, since it doesn't require modification of the original constructor (I didn't specify that as a requirement in my original question, but I appreciate it nevertheless). So the constructor can be written in any way, and the calling function written independently to add more convenience. – Premasagar Oct 24 '09 at 20:43
This doesn't work with Date, String or any other function that behaves differently when called as a constructor. – Pumbaa80 Jan 12 '12 at 13:37
@Pumbaa80 That's a good point. Native constructors know if they're being called as constructors or functions, so they behave differently in this case. – Matthew Crumley Jan 12 '12 at 15:37
1  
Hi, Matthew, It's better to fix the constructor property aslo. An enhanced version of your answer. stackoverflow.com/a/13931627/897889 – wukong Dec 18 '12 at 11:57

With ECMAScipt5's Function.prototype.bind things get pretty clean:

function newCall(Cls) {
    return new (Function.prototype.bind.apply(Cls, arguments));
    // or even
    // return new (Cls.bind.apply(Cls, arguments));
    // if you know that Cls.bind has not been overwritten
}

It can be used as follows:

var s = newCall(Something, a, b, c);

or even directly:

var s = new (Function.prototype.bind.call(Something, null, a, b, c));

var s = new (Function.prototype.bind.apply(Something, [null, a, b, c]));

This and the eval-based solution are the only ones that always work, even with special constructors like Date:

var date = newCall(Date, 2012, 1);
console.log(date instanceof Date); // true

edit

A bit of explanation: We need to run new on a function that takes a limited number of arguments. The bind method allows us to do it like so:

var f = Cls.bind(anything, arg1, arg2, ...);
result = new f();

The anything parameter doesn't matter much, since the new keyword resets f's context. However, it is required for syntactical reasons. Now, for the bind call: We need to pass a variable number of arguments, so this does the trick:

var f = Cls.bind.apply(Cls, [anything, arg1, arg2, ...]);
result = new f();

Let's wrap that in a function. Cls is passed as arugment 0, so it's gonna be our anything.

function newCall(Cls /*, arg1, arg2, ... */) {
    var f = Cls.bind.apply(Cls, arguments);
    return new f();
}

Acutally, the temporary f variable is not needed at all:

function newCall(Cls /*, arg1, arg2, ... */) {
    return new (Cls.bind.apply(Cls, arguments))();
}

Finally, we should make sure that bind is really what we need. (Cls.bind may have been overwritten). So replace it by Function.prototype.bind, and we get the final result as above.

share|improve this answer
1  
This is awesome. Thanks so much! – Ian Kuca Mar 6 '12 at 16:50
@RobW I'm sorry but I don't think you fully understood how my solution works. Basically we need something like var t = Cls.bind(WHATEVER, arguments[1], arguments[2], arguments[3], ...); return new t();. The WHATEVER value doesn't matter for constructor calls, since this will be the newly created object. It's not necessary to unshift anything since arguments[0]==Cls. Did you test your version? I'm afraid it doesn't work. – Pumbaa80 Mar 23 '12 at 13:55
You're right in saying that Function.bind can be used instead of Function.prototype.bind, I just left it for clarity. After all, any function could be used: eval.bind would save even more code, but that's really way too confusing. – Pumbaa80 Mar 23 '12 at 13:59
@Pumbaa80 My bad, reverted my edit. I tested new (Function.prototype.bind.apply(Array, [1,2,3]));, but forgot that your newCall function already receives a cls argument. – Rob W Mar 23 '12 at 14:00
1  
Interesting, but important to remember that IE8 only supports ECMAScript 3 – jordancpaul Sep 8 '12 at 0:39
show 1 more comment

Suppose you've got an Items constructor which slurps up all the arguments you throw at it:

function Items () {
    this.elems = [].slice.call(arguments);
}

Items.prototype.sum = function () {
    return this.elems.reduce(function (sum, x) { return sum + x }, 0);
};

You can create an instance with Object.create() and then .apply() with that instance:

var items = Object.create(Items.prototype);
Items.apply(items, [ 1, 2, 3, 4 ]);

console.log(items.sum());

Which when run prints 10 since 1 + 2 + 3 + 4 == 10:

$ node t.js
10
share|improve this answer
This is another good way to do it if you have Object.create available. – Matthew Crumley May 20 '11 at 4:22

An improved version of the accepted answer. This form has the slight performance benefits obtained by storing the temp class in a closure, as well as the flexibility of having one function able to be used to create any class

var applyCtor = function(){
    var tempCtor = function() {};
    return function(ctor, args){
        tempCtor.prototype = ctor.prototype;
        var instance = new tempCtor();
        ctor.prototype.constructor.apply(instance,args);
        return instance;
    }
}();

This would be used by calling applyCtor(class, [arg1, arg2, argn]);

share|improve this answer

if you're interested in an eval-based solution

function createSomething() {
	var q = [];
	for(var i = 0; i < arguments.length; i++)
		q.push("arguments[" + i + "]");
	return eval("new Something(" + q.join(",") + ")");
}
share|improve this answer
4  
......... Eeugh. – Tim Down Oct 22 '09 at 13:36
1  
Using eval is slower and more error prone than using apply() directly. – Robert Koritnik Oct 22 '09 at 13:38
2  
Thanks, stereofrog. That's a clever way to use eval to solve the problem. Ideally, I think I'd like to avoid the use of eval, though. – Premasagar Oct 23 '09 at 10:58
This is the only solution that works reliably. – Pumbaa80 Jan 12 '12 at 13:37

This answer is a little late, but figured anyone who sees this might be able to use it. There is a way to return a new object using apply. Though it requires one little change to your object declaration.

function testNew() {
    if (!( this instanceof arguments.callee ))
        return arguments.callee.apply( new arguments.callee(), arguments );
    this.arg = Array.prototype.slice.call( arguments );
    return this;
}

testNew.prototype.addThem = function() {
    var newVal = 0,
        i = 0;
    for ( ; i < this.arg.length; i++ ) {
        newVal += this.arg[i];
    }
    return newVal;
}

testNew( 4, 8 ) === { arg : [ 4, 8 ] };
testNew( 1, 2, 3, 4, 5 ).addThem() === 15;

For the first if statement to work in testNew you have to return this; at the bottom of the function. So as an example with your code:

function Something() {
    // init stuff
    return this;
}
function createSomething() {
    return Something.apply( new Something(), arguments );
}
var s = createSomething( a, b, c );

Update: I've changed my first example to sum any number of arguments, instead of just two.

share|improve this answer
+1 Clever, thanks for sharing! – pimvdb Sep 12 '11 at 19:45
of course, arguments.callee is depreciated (developer.mozilla.org/en/JavaScript/Reference/…) but you can still just reference your constructor func directly by name – busticated Mar 24 '12 at 22:19
@busticated: absolutely correct, and I didn't use it in my second snippet. – Trev Norris Mar 27 '12 at 23:04
The only problem with this solution is that it's going to end up running the constructor twice on the same object with different parameters. – Will Tomlins Nov 12 '12 at 14:40
1  
@WillTomlins: It will end up running the constructor twice, and in a different context. Though I'm not sure how the parameters will have changed. Care to clarify? – Trev Norris Nov 13 '12 at 19:19
show 1 more comment

You could move the init stuff out into a separate method of Something's prototype:

function Something() {
    // Do nothing
}

Something.prototype.init = function() {
    // Do init stuff
};

function createSomething() {
    var s = new Something();
    s.init.apply(s, arguments);
    return s;
}

var s = createSomething(a,b,c); // 's' is an instance of Something
share|improve this answer
Yes, good idea. I could create an init() method and then use apply() on that. As with my comment on Ionut's approach, it's a bit of a shame that there's not a way to do this without modifying the architecture of the constructor. But this looks like a pragmatic solution. – Premasagar Oct 22 '09 at 16:22

I prefer this approach as it's cleaner and more straightforward:

var MyClass = function(arg1, arg2){
};

//define a class-level create method 
MyClass.create = function(arg1, arg2){
   return new MyClass(arg1, arg2);
};

//from with some other method call
var instance = MyClass.create.apply(this, arguments); //'this' is irrelevant
share|improve this answer
This doesn't handle the OP's question, that is invoking the constructor with a variable number of arguments. Notice that your create method always creates a new MyClass with 2 args. – jasonkarns Jun 13 at 19:47

You can't call a constructor with a variable number of arguments like you want with the new operator.

What you can do is change the constructor slightly. Instead of:

function Something() {
    // deal with the "arguments" array
}
var obj = new Something.apply(null, [0, 0]);  // doesn't work!

Do this instead:

function Something(args) {
    // shorter, but will substitute a default if args.x is 0, false, "" etc.
    this.x = args.x || SOME_DEFAULT_VALUE;

    // longer, but will only put in a default if args.x is not supplied
    this.x = (args.x !== undefined) ? args.x : SOME_DEFAULT_VALUE;
}
var obj = new Something({x: 0, y: 0});

Or if you must use an array:

function Something(args) {
    var x = args[0];
    var y = args[1];
}
var obj = new Something([0, 0]);
share|improve this answer
Great, I earned the Disciplined badge for deleting my former wrong answer that had garnered 5 upvotes and one downvote. Oh well, here's the actual useful answer. – Anthony Mills Oct 22 '09 at 21:34
OK, fair enough. This basically restricts the number of args to just one (either an object or an array), but allows an arbitrary number of properties within it. – Premasagar Oct 23 '09 at 10:57
Yes. Well, it doesn't restrict the number of args at all, really (you just use one of the args as a container for optional arguments), it's just that an object or an array are generally the most useful containers. You'll often see this pattern in constructors; it allows named parameters (good for self-documenting source code) as well as optional parameters. – Anthony Mills Oct 23 '09 at 12:28

See also how CoffeeScript does it.

s = new Something([a,b,c]...)

becomes:

var s;
s = (function(func, args, ctor) {
  ctor.prototype = func.prototype;
  var child = new ctor, result = func.apply(child, args);
  return typeof result === "object" ? result : child;
})(Something, [a, b, c], function() {});
share|improve this answer

Matthew Crumley's solutions in CoffeeScript:

construct = (constructor, args) ->
    F = -> constructor.apply this, args
    F.prototype = constructor.prototype
    new F

or

createSomething = (->
    F = (args) -> Something.apply this, args
    F.prototype = Something.prototype
    return -> new Something arguments
)()
share|improve this answer

@Matthew I think it's better to fix the constructor property also.

// Invoke new operator with arbitrary arguments
// Holy Grail pattern
function invoke(constructor, args) {
    var f;
    function F() {
        // constructor returns **this**
        return constructor.apply(this, args);
    }
    F.prototype = constructor.prototype;
    f = new F();
    f.constructor = constructor;
    return f;
}
share|improve this answer
I think you are right fixing the constructor is useful unless the application never checks it which cannot be implied when writing a library. – Jean Vincent Feb 7 at 18:55

It's also intresting to see how the issue of reusing the temporary F() constructor, was addressed by using arguments.callee, aka the creator/factory function itself: http://www.dhtmlkitchen.com/?category=/JavaScript/&date=2008/05/11/&entry=Decorator-Factory-Aspect

share|improve this answer

Any function (even a constructor) can take a variable number of arguments. Each function has an "arguments" variable which can be cast to an array with [].slice.call(arguments).

function Something(){
  this.options  = [].slice.call(arguments);

  this.toString = function (){
    return this.options.toString();
  };
}

var s = new Something(1, 2, 3, 4);
console.log( 's.options === "1,2,3,4":', (s.options == '1,2,3,4') );

var z = new Something(9, 10, 11);
console.log( 'z.options === "9,10,11":', (z.options == '9,10,11') );

The above tests produce the following output:

s.options === "1,2,3,4": true
z.options === "9,10,11": true
share|improve this answer
This doesn't address the OP's question. Notice when you create vars s and z the number of args passed to Something is static. – jasonkarns Jun 13 at 19:49

Thanks to posts here I've used it this way:

SomeClass = function(arg1, arg2) {
    // ...
}

ReflectUtil.newInstance('SomeClass', 5, 7);

and implementation:

/**
 * @param strClass:
 *          class name
 * @param optionals:
 *          constructor arguments
 */
ReflectUtil.newInstance = function(strClass) {
    var args = Array.prototype.slice.call(arguments, 1);
    var clsClass = eval(strClass);
    function F() {
        return clsClass.apply(this, args);
    }
    F.prototype = clsClass.prototype;
    return new F();
};
share|improve this answer
1  
-1 for using eval without necessity – Bergi Apr 20 at 15:22
+1 for the -1 :) – Ingo Bürk Apr 21 at 10:44
If only I would have a link to the real function I would not use any additional boilerplate code to call the constructor with arguments. As you can see this method is intended to be used when you have string name of the function. In this case it is tricky to call constructor with arguments. This is very case we are talking about. If you are talking that eval was used without necessity you didn't understood the goal from the start. – Mykhaylo Adamovych Apr 23 at 8:24

Shouldn't this work? Half-awake, didn't read closely.

var Storage = undefined;

return ((Storage = (new Something(...))) == undefined? (undefined) : (Storage.apply(...)));
share|improve this answer
I love how this is super downvoted even though it's essentially identical to the top answer. – John Haugeland Oct 28 '12 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.