concat Method (String)

Returns a string value containing the concatenation of the current string with any supplied strings.

function concat([string1 : String [, ... [, stringN : String]]]]) : String

Arguments

  • string1, ... , stringN
    Optional. String objects or literals to concatenate to the end of the current string.

Remarks

The result of the concat method is equivalent to: result = curstring + string1 + ... + stringN. The curstring refers the string stored in the object that supplies the concat method. A change of value in either a source or result string does not affect the value in the other string. If any of the arguments are not strings, they are first converted to strings before being concatenated to curstring.

Example

The following example illustrates the use of the concat method when used with a string:

function concatDemo()
{
   var str1 = "ABCD"
   var str2 = "EFGH";
   var str3 = "1234";
   var str4 = "5678";
   var s = str1.concat(str2, str3, str4);
   // Output: "ABCDEFGH12345678"
   return(s);
}

Requirements

Version 3

Applies To:

String Object

See Also

Reference

Addition Operator (+)

Array Object

concat Method (Array)