Javascript String.toString()方法


此方法返回表示指定物件的字串形式。

語法

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.