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