TypeScript - String Length Property



Returns the length of the string.

Example

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

On compiling, it will generate the same code in JavaScript.

Its output is as follows −

Hello World 
Length 11
typescript_strings.htm
Advertisements