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