{"ScriptPreparationCode":"const setA = new Set(Array.from({ length: 10000 }, _ =\u003E Math.floor(Math.random() * 200)));\r\nconst setB = new Set(Array.from({ length: 10000 }, _ =\u003E Math.floor(Math.random() * 300)));","TestCases":[{"Name":"Set.union","Code":"const union = setA.union(setB);","IsDeferred":false},{"Name":"Set.add","Code":"const union = new Set(setA);\r\nsetB.forEach(v =\u003E union.add(v));","IsDeferred":false},{"Name":"Set.union in the other order","Code":"const union = setB.union(setA);","IsDeferred":false},{"Name":"Set.add in the other order","Code":"const union = new Set(setB);\r\nsetA.forEach(v =\u003E union.add(v));","IsDeferred":false}]}