![]() |
VOOZH | about |
The toString() method in JavaScript converts a string object to a string primitive. It returns a string representing the specified object. This method is automatically called when a string object needs to be defined as a text value or concatenated with another string. The toString() method also converts a number to a string.
string.toString()Example 1: This example shows the basic use of the string.toString() Method in Javascript.
GfG
Example 2: Taking a string as input and printing it with the help of a string.toString() method.
GeeksforGeeks
Example 3: Taking a string as input and printing it with the help of string.toString() method.
GFGGFG
Example 4: In this example, we are converts the variable number to a string using the toString() method and output the result. The typeof operator confirms the type of our output as "string".
42 string
We have a complete list of Javascript string methods, to check those please go through this article.