TypeScript - String Length 属性


返回字符串的长度。

示例

var uname = new String("Hello World") 
console.log(uname) 
console.log("Length "+uname.length)  // returns the total number of characters 
                                     // including whitespace

编译时,它将在 JavaScript 中生成相同的代码。

其输出如下 −

Hello World 
Length 11

typescript_strings.html