.toString()
The .toString()
method returns a string representation of a given value or object.
Syntax
stringObject.toString()
The .toString()
method takes no parameters.
Note: This method can be called on numbers, arrays, and objects.
Example
The following example demonstrates the .toString()
method:
// Assigning constant to integer valueconst myNum = 3;// Using .toString() method to get its string valueconst str = myNum.toString();console.log('Value of str variable is', str);// Using typeof operator to show string value was returnedconsole.log('Type of str variable is', typeof str);
This will produce the following output:
Value of str variable is 3Type of str variable is string
Codebyte Example
The following is a runnable example demonstrating the .toString()
method:
All contributors
- xiAlexx2 total contributions
- Anonymous contributorAnonymous contributor1 total contribution
- xiAlexx
- Anonymous contributor
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.