0 / 60 seg.

What is the output of the following code?

const set1 = new Set([1, 2, 3]);
const set2 = new Set([4, 5, 3]);
const union = new Set([...set1, ...set2]);
console.log(union.size);