method Array.join Private Array.join(separator?: string): string Adds all the elements of an array into a string, separated by the specified separator string. Parameters optional separator: string A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma. Return Type string