join(array, separator)

Combines an array of Strings into one String, each separated by the character(s) used for the separator parameter. To join arrays of ints or floats, it’s necessary to first convert them to strings using nf() or nfs().

Type: function

Parameter(s):

  • array {Array}:

    A string array

  • separator {String}:

    The separator to be inserted

Returns:

  • {String}:

    The joined string