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