ES6 字符串长度属性 ES6 字符串构造方法属性 ES6 字符串原型属性 prototype ES6 字符串长度属性 var uname = new String("Hello World") console.log(uname) console.log("Length "+uname.length) // returns the total number of characters // including whitespace ES6 字符串构造方法属性 ES6 字符串原型属性 prototype