TypeScript – String Length Property

 length of the string

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

Previous Page:-Click Here

Leave a Reply