此方法返回表示指定物件的字串形式。
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.