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


JavaScript typedArray.join()用法及代碼示例


typedArray.join() 是 JavaScript 中的內置函數,用於將給定 typedArray 的所有元素連接到字符串中。

用法:

typedArray.join(separator);

參數:它接受一個參數“separator”,該參數用於分隔 typedArray 的每個元素。它是可選的,默認值為逗號(‘,’)。

返回值:它返回一個包含所有連接元素的字符串。

例子:JavaScript 代碼顯示此函數的工作原理。

javascript


// Creating some typedArrays 
const A = new Uint8Array([1, 2, 3, 4, 5]); 
const B = new Uint8Array([5, 10, 15, 20]); 
const C = new Uint8Array([0, 2, 4, 6, ,8, 10]); 
const D = new Uint8Array([1, 3, 5, 7, 9]); 
  
// Calling join() function 
a = A.join() 
b = B.join('/') 
c = C.join('+') 
d = D.join('&') 
  
// Printing new strings with joined elements 
console.log(a); 
console.log(b); 
console.log(c); 
console.log(d);

輸出:

1,2,3,4,5
5/10/15/20
0+2+4+6+0+8+10
1&3&5&7&9

相關用法


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