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