Documentation
    Preparing search index...

    Function join

    • Joins all the elements of an iterable sequence into a string, separated by the specified separator string.

      Parameters

      • separator: string

        the separator string placed between each of the items.

      • values: Iterable<unknown>

        a sequence of items to join. Every item inside will be converted into string first before appended to the output.

      Returns string