{"ScriptPreparationCode":"const length = 100000;\r\nconst arr = Array.from({length}, () =\u003E () =\u003E Math.random());\r\nconst set = new Set(arr);","TestCases":[{"Name":"Set","Code":"for(const c of set){\r\n\tc();\r\n}\r\n\r\nset.clear();","IsDeferred":false},{"Name":"For","Code":"arr.forEach((c) =\u003E c());\r\narr.length = 0;","IsDeferred":false},{"Name":"While","Code":"while(true){\r\n const c = arr.pop();\r\n \r\n if(c === undefined) break;\r\n \r\n c();\r\n}","IsDeferred":false}]}