Es6-string-length
提供:Dev Guides
ES6-文字列プロパティの長さ
このプロパティは、文字列の文字数を返します。
このプロパティは、文字列の文字数を返します。
string.length
var uname = new String("Hello World")
console.log(uname)
console.log("Length "+uname.length)
//returns the total number of characters
//including whitespace
Hello World
Length 11