What will the following code return?
const set = new Set([1, 2, 3]); const result = set.delete(1);
false
true
1
undefined