JavaScript Program To Perform Intersection Between Two Arrays

To understand this example, you should have the knowledge of the following JavaScript programming topics:


Example 1: Perform Intersection Using Set

Output

[1, 3, 5]

In the above program, an intersection is performed between array1 and array2.

  • The array elements are converted into Set elements using the new Set() constructor.
  • The for...of loop is used to iterate over the second Set elements.
  • The has() method is used to check if the element is in the first Set.
  • If the element is present in the first Set, that element is added to the intersectionResult array using the push() method.

Example 2: Perform Intersection Using filter() Method

Output

[1, 3, 5]

In the above program, an intersection is performed between two arrays using the filter() method. The filter method iterates over an array and returns the array elements that pass the given condition.

  • Each element of the first array is compared with the second array using the indexOf() method.
  • The arr2.indexOf(x) method searches arr2 and returns the position of the first occurrence of arr1. If the value cannot be found, it returns -1.
  • All the elements that are in both arrays are returned by the filter() method.

Note: You could also use the includes() method to check if the array elements are in both arrays.

const intersectionResult = arr1.filter(x => arr2.includes(x))