function StringStream() {}
StringStream.prototype = new Array();
StringStream.prototype.toString = function(){ return this.join(''); };

Calling new StringStream(1,2,3) gives an empty array

x = new StringStream(1,2,3)

gives

StringStream[0]
__proto__: Array[0]

Can someone please explain why the superclass' (Array) constructor is not called?

link|improve this question
who gave you this code and why ? :( – c69 Oct 8 '11 at 15:56
feedback

1 Answer

Just because StringStream.prototype is an array, the StringStream constructor is not replaced with Array as well.

You should implement that yourself: http://jsfiddle.net/gBrtf/.

function StringStream() {
    // push arguments as elements to this instance
    Array.prototype.push.apply(this, arguments);
}

StringStream.prototype = new Array;

StringStream.prototype.toString = function(){
    return this.join('');
};
link|improve this answer
So there is no way to call the constructor of Array obj and passing the arguments instead of invoking the push method? – Markos Evlogimenos Oct 8 '11 at 18:33
@Markos Evlogimenos: You cannot combine new and .apply so I guess there is no way. Anyway, why are you trying to create a constructor that is equivalent to Array? – pimvdb Oct 8 '11 at 20:16
feedback

Your Answer

 
or
required, but never shown

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