TypeScript - String toString()



This method returns a string representing the specified object.

Syntax

string.toString( )

Return Value

Returns a string representing the specified object.

Example

var str = "Apples are round, and Apples are Juicy."; 
console.log(str.toString( ));

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

Its output is as follows −

Apples are round, and Apples are Juicy.
typescript_strings.htm
Advertisements