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