concat

The concat method joins two or more strings

 

Syntax

System.String concat(System.String string_1, System.String string_n);

 

Parameters

string_1

String to be joined

string_n

[Optional] String to be joined

 

Return Value

Returns the joined string object.

 

Remarks

Member of string.

 

Example