{"ScriptPreparationCode":"function GetId(){\r\n\treturn Math.random().toString().slice(2, 10);\r\n}\r\n\r\nwindow.array = Array.from(new Array(10000)).map(GetId);","TestCases":[{"Name":"For Loop","Code":"let res = \u0022\u0022;\r\nfor(let i = 0; i \u003C window.array.length; \u002B\u002Bi){\r\n\tres = window.array[i];\r\n}\r\n","IsDeferred":false},{"Name":"For of loop","Code":"let res = \u0022\u0022;\r\nfor(let value of window.array){\r\n\tres = value;\r\n}","IsDeferred":false},{"Name":"ForEach loop","Code":"let res = \u0022\u0022;\r\nwindow.array.forEach(v =\u003E {\r\n\tres = v;\r\n})","IsDeferred":false}]}