Home » JavaScript String toString() Method

JavaScript String toString() Method

by Online Tutorials Library

JavaScript String toString() Method

The JavaScript toString() method returns a string representing the calling object. In other words, this method provides a string representation of the object and treats same as the valueof() method.

Syntax

The toString() method is represented by the following syntax:

Returns

A String representing the object

JavaScript String toString() Method Example

Let’s see some simple examples of toString() method.

Example 1

Here, we will print the value of string object.

Test it Now

Output:

Tutoraspire  

Example 2

Let’s see one more example to print the value of string object.

Test it Now

Output:

Tutoraspire  

Next TopicJavaScript String

You may also like