7.24.7 concat Method

Returns a String object containing the concatenation of two supplied strings.
Syntax
string1.concat(string2)
Arguments
- string1
- The String object or literal to concatenate with string2. Required.
- string2
- A String object or literal to concatenate to the end of string1. Required.
Remarks
The result of the concat method is equivalent to: result = string1 + string2.
Copyright © 2000 Chili!Soft
|