Array to string concatenator

[data/array/Array to string concatenator]


Concatenates an array to string, using the specified delimiter.


Keywords: array concat delimiter

Input ports

  • array: any[]

    Receives array to be concatenated. Example: ["A", "B", "C"]

  • delimiter: string

    Receives the delimiter to use between array elements. Example: ","

Output ports

  • concatenated: string

    Sends the concatenated array. Example: "A,B,C"

Last updated