È possibile chiamare il costruttore usando un oggetto argomenti?
var MyClass = function(a, b){
this.a = a;
this.b = b;
};
var myClassInstance = function(){
//This line would not work, but is what I'm asking. Is there a way besides eval?
return new MyClass.apply(?, arguments);
}('an A value', 'a B value');