Uint8ClampedArray.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 Uint8ClampedArray([1, 2, 3]).join()
"1,2,3"
new Uint8ClampedArray([1, 2, 3]).join(", ")
"1, 2, 3"