js-util

Home > rc-js-util > ATypedArrayTuple > join

ATypedArrayTuple.join() method

Adds all the elements of an array separated by the specified separator string.

Signature:

join(_separator?: string): string;

Parameters

Parameter Type Description
_separator string (Optional) A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.

Returns:

string