Concat Function
Generates a string concatenation of two or more expressions.
Syntax
Concat(value1, value2, ...)
Generates a string concatenation of two or more expressions.
Arguments
value
String - A list of expressions to be concatenated.
Remarks
Example:
Concat("A", "B"); // returns AB
Example:
Concat("A", "B", "C"); // returns ABC