DroidScript

JavaScript Reference

str.toString()

The toString() method returns a string representing the specified object.

Syntax

str.toString()

Description

The String object overrides the toString() method of the Object object; it does not inherit Object.prototype.toString(). For String objects, the toString() method returns a string representation of the object and is the same as the str.valueOf() method.

Examples

Using toString()

The following example displays the string value of a String object:

var x = new String('Hello world');

console.log(x.toString()); // logs 'Hello world'

 Created by Mozilla Contributors and licensed under CC-BY-SA 2.5