Int8Array.prototype.join

Adds all the elements of a typed array into a string, separated by the specified separator string.

Syntax

join(separator)

Parameters

Return value

A string.

Example

new Int8Array([1, 2, 3]).join()
"1,2,3"
new Int8Array([1, 2, 3]).join(", ")
"1, 2, 3"