EN
JavaScript - find difference between two arrays
0 points
In this article, we would like to show you how to find the difference between two arrays using JavaScript.

Example 1
xxxxxxxxxx
1
const array1 = ['a', 'b', 'c', 'd'];
2
const array2 = ['a', 'b'];
3
4
const result = array1.filter((x) => !array2.includes(x)); // elements that are in array1 but not in array2
5
6
console.log(result); // [ 'c', 'd' ]
Example 2
xxxxxxxxxx
1
const array1 = ['a', 'b'];
2
const array2 = ['a', 'b', 'c', 'd'];
3
4
const result = array2.filter((x) => !array1.includes(x)); // elements that are in array2 but not in array1
5
6
console.log(result); // [ 'c', 'd' ]