Joins array elements into a string with a delimiter.
1 2
var arr []string = ["a", "b", "c"] printf("%s\n", arrays.join(arr, ", ")) // a, b, c