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