What will be the output of the following code?
console.log(mySet.size); const mySet = new Set([1, 2, 3]); mySet.delete(3);
1
0
2
undefined