扫码一下
查看教程更方便
toString() 方法返回一个表示 String 对象的值。
语法如下:
string.toString()
返回表示指定对象的字符串。
所有主流浏览器都支持 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.