Array JavaScript Tutorial

Syntax 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.
arg1,...argN contains one or more elements to be concatenated to the end of the array.
The original is not changed by this method.