概要
指定されたオブジェクトを表す文字列を返します。
構文
str.toString()
詳細
その String
オブジェクトは、Object
の toString
メソッドを上書きします。つまり、Object.toString
を継承しません。 String
オブジェクトでは、toString
メソッドは、そのオブジェクトを表す文字列を返します。
Examples
例: toString
メソッドの使用
以下の例は、String オブジェクトを表す文字列の値を表示します。:
x = new String("Hello world"); alert(x.toString()) // "Hello world" を表示します