Returns the concatenation of two strings.
Syntax
concat( string1 , string2 )
string1.concat( string2 )
Parameters
string1
|
the string to concatenate to.
|
string2
|
the string to concatenate.
|
Returns
string
|
the resultant string.
|
Example
name = firstName.concat( lastName )
|