What does the following code snippet return?
const set = new Set([1, 2, 3]); console.log(set.has(2));
true
undefined
false
2