Concatenate operator (x+y)

Concatenates the strings x with y to xy. x and y need to be of the type String.

Usage:

x + y

Returns:

Concatenated String:  xy.

Examples:

"Hello " + "World"
-> Returns "Hello World"