combine 2 arrays javascript

Combining 2 Arrays in JavaScript

As a web developer, I have had to combine arrays in JavaScript numerous times. It is a common task when working with data, especially when you need to merge multiple sets of data into a single array. In this blog post, I will explain how you can combine two arrays in JavaScript.

Using the Concat Method

The Concat method is the simplest way to combine two arrays in JavaScript. It creates a new array that contains all the elements from the original arrays. Here's an example:


let arr1 = [1, 2, 3];
let arr2 = [4, 5, 6];

let combinedArr = arr1.concat(arr2);

console.log(combinedArr); // [1, 2, 3, 4, 5, 6]

The Concat method returns a new array that contains all the elements from arr1 followed by all the elements from arr2. It does not modify the original arrays.

Using the Spread Operator

The Spread operator is another way to combine arrays in JavaScript. It allows you to spread the elements of one array into another array. Here's how you can use it:


let arr1 = [1, 2, 3];
let arr2 = [4, 5, 6];

let combinedArr = [...arr1, ...arr2];

console.log(combinedArr); // [1, 2, 3, 4, 5, 6]

The Spread operator creates a new array that contains all the elements from arr1 followed by all the elements from arr2. It is a more concise way to combine arrays compared to the Concat method.

Using the Push Method

The Push method is also a way to combine arrays in JavaScript. It adds the elements from one array to another array. Here's how you can use it:


let arr1 = [1, 2, 3];
let arr2 = [4, 5, 6];

Array.prototype.push.apply(arr1, arr2);

console.log(arr1); // [1, 2, 3, 4, 5, 6]

The Push method modifies the original array (arr1) by adding the elements of another array (arr2) to it.

Conclusion

There are multiple ways to combine arrays in JavaScript. The Concat method and Spread operator create a new array that contains all the elements from the original arrays, while the Push method modifies the original array by adding elements from another array to it. Choose the method that suits your needs and coding style.

Subscribe to The Poor Coder | Algorithm Solutions

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
[email protected]
Subscribe