码迷,mamicode.com
首页 > 编程语言 > 详细

用数组的元素组成字符串 - join()

时间:2015-01-13 19:25:29      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

使用 join() 方法将数组的所有元素组成一个字符串。

 

编辑您的代码:

<html>

<body>

<script type="text/javascript">

var arr = new Array(3);

arr[0] = "George"

arr[1] = "John"

arr[2] = "Thomas"

document.write(arr.join());

document.write("<br />");

document.write(arr.join("."));

</script>

</body>

</html>

 

查看结果:

      George,John,Thomas
      George.John.Thomas

 

用数组的元素组成字符串 - join()

标签:

原文地址:http://www.cnblogs.com/zifashaonian10000/p/4221914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!