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