Type: StringThe string to use as a separator. The string is included in the returned string only if the collection has more than one element.
Type: Collection(String)A collection that contains the strings to concatenate.
Type: BooleanTRUE to include collection elements that are null or the empty string; otherwise FALSE to exclude such elements before concatenation.
String.join(" ", [person.firstName, person.middleName, person.lastName], false)
String.join(“;”, person.addresses.displayName, false)