const set = new Set([1, 2, 3]); console.log(set.values()); // Set Iterator [1, 2, 3] // removing a particular element set.delete(2); console.log(set.values()); // Set Iterator [1, 3]