concat

Description

Concatenates all of the strings passed in as arguments together. A null string passed as an argument will be evaluated as the word null . Rarely used, as the + operator does the same thing.

Syntax

concat( string1, string2, ... )

Examples
concat("The answer is: ", "42") //returns "The answer is: 42"