August 1999
Intermediate to advanced
1488 pages
72h 53m
English
array.concat(arg1,…argN)
The concat() method adds the elements listed in the parameter list to the end of the existing array and returns the result. The original is not changed by this method. Should any of the arguments be Array, the elements of that array are concatenated to the array that called the method.
Table 6.9 lists the argument and return values associated with this method.
| Type | Item | Description |
|---|---|---|
| Arguments | arg1,…argN | The parameter list of the concat() method contains one or more elements to be concatenated to the end of the array. |
| Returns | The original array with the new concatenated ... |
Read now
Unlock full access