{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}

Join

Joins the subtrings of an array of strings (x) and puts them together, optionally using a custom delimiter.

Usage:

Join( x )
Join( x, y )

Parameters:

x A string array containing the strings to join
y A delimiter to insert between the substrings [OPTIONAL, default is " "]

Returns:

String

Examples:

join(["abc", "def", "ghi"])     // Returns the string "abc def ghi"
join(["abc", "def", "ghi"],"")  // Returns the string "abcdefghi"