join¶ Signature¶ join(string, array[string]) Description¶ Returns all of the elements from the provided array joined together using the glue argument as a separator between each. Examples¶ join('/', ['a', 'b', 'c']) == 'a/b/c'