Array.join

Array.join

Array.join

Function

Concatenate array elements into a string according to delimiters.

Syntax

Parameters

ParametersTypeRequiredDefault valueDescription
separatorAnyNo","The separator between elements, which will be converted to a string first when called.

Return value

TypeDescription
StringReturns the concatenated string.

Example

Notes

  • Each element will be converted to text according to BT stringification rules.