Array.join

Function/Meaning

Combine the arrays into a single string.

Type
Arrayclassmethod of
Syntax
join(delimiter:string, reserve, ignore:bool=false) :string
Arguments
delimiter

delimiter. Delimiter.

reserve

Reserved for future versions.

ignore

If true, voids in the element will be ignored.

Return value

Returns the object itself of this Array class.

Explanation

Combines each element of the array with a delimiter and returns the combined string.