Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

TypeScript String toString() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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
    var str = "Geeksforgeeks - Best Platform"
  
    // use of String toString() Method
    var newstr = str.toString() 
    console.log(newstr);
</script>


Output: 

Geeksforgeeks - Best Platform

Example 2: 

JavaScript




<script>
    // Original strings
    var str = "TypeScript - String toString()"
  
    // use of String toString() Method
    var newstr = str.toString() 
    console.log(newstr);
</script>


Output: 

TypeScript - String toString()
My Personal Notes arrow_drop_up
Last Updated : 03 Jan, 2023
Like Article
Save Article
Similar Reads
Related Tutorials