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


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


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

typedArray.join(separator);

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

返回值:它返回一個包含所有聯接元素的字符串。
JavaScript代碼顯示此函數的工作方式:

<script> 
  
  // 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 
   document.write(a +"<br>"); 
   document.write(b +"<br>"); 
   document.write(c +"<br>"); 
   document.write(d); 
      
</script>

輸出:

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() with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。