JavaScript Array Methods : Concat()

Jack Pritom Soren - May 13 '22 - - Dev Community

The concat() method concatenates (joins) two or more arrays.It returns a new array, containing the joined arrays. It does not change the existing arrays.

Example :

const array1 = ['a', 'b', 'c'];
const array2 = ['d', 'e', 'f'];
const array3 = array1.concat(array2);

console.log(array3);
//Output: Array ["a", "b", "c", "d", "e", "f"]
Enter fullscreen mode Exit fullscreen mode

Concat

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player