构造函数返回对创建实例原型的字符串函数的引用。
string.constructor
返回创建此对象实例的函数。
var str = new String( "This is string" ); console.log("str.constructor is:" + str.constructor)
str.constructor is:function String() { [native code] }