String::join()
Join items (a list of strings) with this string as a separator.
items
":".join(["a", "b", "c"]) //-> "a:b:c"
public method join(this: String, items: List<String>): String { __BUILT_IN_IMPLEMENTATION }