a/b

Description:

Concatenate a string with one or more pieces of non-string data.

Syntax:

a/b

Note:

Either a or b is a string. The function will convert the non-string type one to a string before concatenating them to a larger one.

Parameter:

a

Data of any type, with the condition that either a or b is a string.

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.