当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript toString()方法
The toString() method converts an array to a string and returns the result.
toString()方法可将数组转换成为字符串的形式输出
arrayObject.toString() |
Note: The elements in the array will be separated with commas.
注意点:在数组中的元素将用逗号分隔
In this example we will create an array and convert it to a string:
这个举例我们将建立一个数组,并将它转换成为字符串的形式:
<script type="text/javascript"> var arr = new Array(3) document.write(arr.toString()) </script> |
The output of the code above will be:
输出结果为:
Jani,Hege,Stale |
toString()
How to use toString() to convert an array to a string.
怎样使用 toString()将数组转换成字符串