ES6 Constructor
构造函数返回对创建实例原型的字符串函数的引用。
语法
string.constructor
返回值
返回创建此对象实例的函数。
示例:String构造函数属性
var str = new String( "This is string" );
console.log("str.constructor is:" + str.constructor)
输出
str.constructor is:function String() { [native code] }
此属性返回字符串中的字符数。语法string.length示例:String构造函数属性var uname = new String("Hello World")console.log(uname)console.lo ...