What will be printed to the console with the following code?
const set = new Set([1, 2, 3]);
set.add(4);
console.log(set.size);
What will be printed to the console with the following code?
const set = new Set([1, 2, 3]);
set.add(4);
console.log(set.size);