Function concat( strings, ... )

Description:
Concatenates multiple values into a string. In some cases the same effect can be achieved by writing s1+s2+..., but this method makes sure that values are converted to strings, with the blank value invisible.
Parameters:
strings (Object, one or more)
one or more strings
Return Value (String):
concatenation of input strings, without separators
Examples:
Signature:
String concat(Object...)