| Top | Previous | Next |
|
Strings / concat |
|
concat(string1, string2, ...) Concatenates all of the strings passed in as arguments together. Rarely used, as the + operator does the same thing.
concat("The answer is: ", "42") ... returns "The answer is 42" |