Array to string concatenator
Last updated
Last updated
[data/array/Array to string concatenator]
Concatenates an array to string, using the specified delimiter.
Keywords: array concat delimiter
array: any[]
Receives array to be concatenated. Example: ["A", "B", "C"]
delimiter: string
Receives the delimiter to use between array elements. Example: ","
concatenated: string
Sends the concatenated array. Example: "A,B,C"