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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。