當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript TypedArray join()用法及代碼示例


JavaScript join() 方法用於將 Array 的所有元素連接成一個字符串。元素將由指定的分隔符分隔。默認分隔符是逗號(,)。

用法:

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






相關用法


注:本文由純淨天空篩選整理自 JavaScript TypedArray join() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。