Concatenate operator (x & y)

Concatenates the x with y to xy. x and y can be of one of the types Number, Boolean, Currency, Date, Time, DateTime, and String.

Usage:

x & y

Returns:

String value

Examples:

True & "World"
-> Returns "TrueWorld"