ES6 - 字符串 length 属性



此属性返回字符串中的字符数量。

语法

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
广告