join text(list of text)joined Type: ([Text]) -> Text

Joins a list of text values together as one text item.

If you want to add a separator between each text item, use join text with(..) instead.

ExamplesClick an example to insert it
join text(["a", "b", "c"])"abc"
join text(["Hello", " ", "Moon"])"Hello Moon"
join text([])""