TypeScript String toString() Method

The toString() is an inbuilt function in TypeScript which is used to return a string representing the specified object.
Syntax:
string.toString( )
Parameter: This methods does not accept any parameter. 
Return Value: This method returns the string representing the specified object. 
Below examples illustrate the String toString() method in TypeScript
Example 1:
JavaScript
| <script>     // Original strings     varstr = "Geeksforzambiatek - Best Platform";       // use of String toString() Method     varnewstr = str.toString()      console.log(newstr); </script> | 
Output:
Geeksforzambiatek - Best Platform
Example 2:
JavaScript
| <script>     // Original strings     varstr = "TypeScript - String toString()";       // use of String toString() Method     varnewstr = str.toString()      console.log(newstr); </script> | 
Output:
TypeScript - String toString()
 
				 
					


