当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Array join()用法及代码示例


JavaScript join() 方法

join() 方法用于将数组的元素连接成一个字符串。它用一个数组调用并返回一个包含数组元素的字符串。

用法:

    array.join([separator]);

参数: separator它是一个可选参数,用于指定数组元素之间的分隔符,默认值为逗号。

返回值:包含数组元素的字符串

例:

    Input:
    var arr = [10, 20, 30, 40, 50];

    Function call:
    var str = arr.join();    

    Output:
    str = "10,20,30,40,50"

使用 Array.join() 方法将数组元素连接成字符串的 JavaScript 代码

<html>
<head>
<title>JavaScipt Example</title>
</head>

<body>
	<script>
		var arr1 = ["Manju", "Amit", "Abhi", "Radib"];
		var arr2 = [10, 20, 30, 40, 50];
		var arr3 = [-10, -20, 0, 10, 20];
		
		var str1 = arr1.join();
		var str2 = arr2.join();
		var str3 = arr3.join();
		
		document.write("str1:" + str1 + "<br>");
		document.write("str2:" + str2 + "<br>");
		document.write("str3:" + str3 + "<br>");
		
		document.write("printing the types of the objects...<br>");
		document.write("type of arr1:" + typeof(arr1) + "<br>");
		document.write("type of arr2:" + typeof(arr2) + "<br>");
		document.write("type of arr3:" + typeof(arr3) + "<br>");
		document.write("type of str1:" + typeof(str1) + "<br>");
		document.write("type of str2:" + typeof(str2) + "<br>");
		document.write("type of str3:" + typeof(str3) + "<br>");
	</script>
</body>
</html>

输出

str1:Manju,Amit,Abhi,Radib
str2:10,20,30,40,50
str3:-10,-20,0,10,20
printing the types of the objects...
type of arr1:object
type of arr2:object
type of arr3:object
type of str1:string
type of str2:string
type of str3:string



相关用法


注:本文由纯净天空筛选整理自 Array join() method with example in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。