What is printed in the following code?
const set = new Set(); set.add(1); set.add(1); set.add(1); console.log(set.size);
2
1
3
0