JavaScript String – toString() 方法
描述
该方法返回一个表示指定对象的字符串。
语法
它的语法如下 –
string.toString( )
返回值
返回表示指定对象的字符串。
示例
尝试下面的示例。
<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.