TypeScript - 字符串长度属性



返回字符串的长度。

示例

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