What is the output of the following code?
const set = new Set([1, 2, 3]); set.clear(); console.log(set.size);
3
undefined
0
1