0 / 60 seg.

What is printed in the following code?

const set = new Set();
set.add(1);
set.add(1);
set.add(1);
console.log(set.size);