コンストラクターは、インスタンスのプロトタイプを作成した文字列関数への参照を返します。
string.constructor
このオブジェクトのインスタンスを作成した関数を返します。
var str = new String( "This is string" ); console.log("str.constructor is:" + str.constructor)
str.constructor is:function String() { [native code] }