Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.toString()

概要

指定されたオブジェクトを表す文字列を返します。

構文

str.toString()

詳細

その String オブジェクトは、ObjecttoString メソッドを上書きします。つまり、Object.toString を継承しません。 String オブジェクトでは、toString メソッドは、そのオブジェクトを表す文字列を返します。

Examples

例: toString メソッドの使用

以下の例は、String オブジェクトを表す文字列の値を表示します。:

x = new String("Hello world");
alert(x.toString())      // "Hello world" を表示します

参照

Object.toString

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Mgjbot, Potappo
 最終更新者: teoli,