What will be the output of the following code?
var mySet = new Set([1, 2, 3]);
for (let value of mySet) {
console.log(value);
}
What will be the output of the following code?
var mySet = new Set([1, 2, 3]);
for (let value of mySet) {
console.log(value);
}