JavaScript TypedArray join() 方法

JavaScript TypedArray join() 方法

JavaScript join() 方法用于将数组的所有元素连接成一个字符串。元素之间由指定的分隔符分开。默认分隔符为逗号(,)。

语法

Array.join(separator)

参数

这是可选的,可以作为参数使用,也可以不使用,默认值为(,)。

返回值

它返回包含数组元素集合的字符串。

浏览器支持

Chrome 1.0
Edge Yes
Firefox 1.0
Opera Yes

示例

JavaScript TypedArray join() 方法

<script type="text/javascript">
// JavaScript to illustrate join() method
  // input array
var JavaTpoint = ['core java','C'];

//joins the elements of the array.
document.write("joins the elements of the array <br>");
document.write(JavaTpoint.join());
document.write("<br>");

//elements are seperated by dot (.).
document.write("elements are seperated by dot (.) <br>");
document.write(JavaTpoint.join('.'));
document.write("<br>");

//elements are seperated by hyphen (-).
document.write("elements are seperated by hyphen (-)<br>");
document.write(JavaTpoint.join('-'));
// expected output: arr[core javaC
//core java.C
//core java-C]
</script> 

输出:

Core java,C
Core java.C
Core java-C

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程