+

Combines, or concatenates two Strings into one new String. The second String is appended to the first, and the result is placed in a new String. Works the same as concat(). myString3 = myString1 + myString2
myString1: a String variable. myString2: a String variable. myString3: a String variable. New String that is the combination of the original two Strings.