const mySet = new Set( [ { a: 1 }, { b: 2 } ] ); // A) Using forEach() mySet.forEach( item => console.log( item ) ); // B) Using for ... of for (let item of mySet) { console.log(item); } // Output: // { a: 1 } // { b: 2 }