此方法返回表示指定对象的字符串形式。
语法
string.toString( )
下面是参数的详细信息:
-
NA
返回值:
-
返回表示指定对象的字符串。
例子:
<html> <head> <title>JavaScript String toString() Method</title> </head> <body> <script type="text/javascript"> var str = "Apples are round, and Apples are Juicy."; document.write(str.toString( )); </script> </body> </html>
这将产生以下结果:
Apples are round, and Apples are Juicy.