Description:
Concatenate a string and a non-string.
Syntax:
a/b
Note:
Concatenate a string and a non-string.
Parameter:
a/b |
Data of any type, with the condition that either a or b is a string. |
Return value:
String
Example:
"abc"/12 |
abc12. |
date("2015-03-12")/"abc" |
2015-03-12abc. |