How to useSet forEach() Method in Javascript

The set.forEach() method is used to execute the function which is taken as a parameter and applied for each value in the set, in insertion order.

Example:

Javascript
let A = [7, 2, 6, 4, 5];
let B = [1, 6, 4, 9];
const set1 = new Set(A);
const set2 = new Set(B);

const difference = new Set();
set1.forEach(element => {
    if (!set2.has(element)) {
        difference.add(element);
    }
});
console.log([...difference]);

Output
[ 7, 2, 5 ]


Get the Difference between Two Sets using JavaScript

To get the difference between two sets in JavaScript, you need to identify elements present in the first set but not in the second. This involves iterating over the first set and filtering out elements that are also found in the second set, ensuring efficient comparison.

We can get the difference between two sets using Javascript by the following methods:

Table of Content

  • Use the filter() method
  • Using Set delete() Method
  • Using Set forEach() Method

Similar Reads

Approach 1: Use the filter() method

Store both array values in the two variables.Use the filter() method for every value of array_1, if there is a value in array_2 then do not include it. Otherwise include the value of array_1....

Approach 2: Using Set delete() Method

TheĀ Set.delete()Ā method in JavaScript is used to delete an element with a specified value in a set and returns a boolean value depending upon the availability of the element....

Approach 3: Using Set forEach() Method

TheĀ set.forEach()Ā method is used to execute the function which is taken as a parameter and applied for each value in the set, in insertion order....

Contact Us