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