& Operator
Language Items List
Definition:
String concatenation operator.
Syntax:
result = operand1 & operand2
Details:
When operand is a number, it is converted to a String when possible. The data type of result is always String.
The & Operator falls last in the order of precedence for arithmetic operators.
Example:
Print 1+2 & 3+4 => “37”
See Also:
Arithmetic Operators
Comparison Operators
Operator Precedence