javascript merge 2 arrays
We can merge two arrays in JavaScript using the concat()
method. Here’s an example:
const array1 = [1, 2, 3];
const array2 = [4, 5, 6];
const mergedArray = array1.concat(array2);
This will create a new array mergedArray that contains all the elements of array1 and array2 in the same order as they were inserted into the original arrays .
If you want to remove duplicates from the merged array, you can use the Set object. Here’s an example:
const array1 = [1, 2, 3];
const array2 = [2, 3, 4];
const mergedArray = [...new Set([...array1, ...array2])];
This will create a new array mergedArray that contains all the unique elements of array1 and array2 in the same order as they were inserted into the original arrays.
Test your knowledge with interactive quizzes.
Prepare for interviews with curated question sets.
Ask your coding-related doubts and get answers.
Earn certifications to enhance your resume.
Hands-on projects to improve your skills.
Test your knowledge with interactive quizzes.
Prepare for interviews with curated question sets.
Add your technical blogs and read technical topics.
Earn certifications to enhance your resume.
Hands-on projects to improve your skills.
People Also Asked |
---|