{"ScriptPreparationCode":"const array = Array.from({length: 10000});\r\nlet t;","TestCases":[{"Name":"for","Code":"for (let i = 0; i \u003C array.length; i\u002B\u002B) {\r\n t = array[i];\r\n}","IsDeferred":false},{"Name":"foreach","Code":"array.forEach((v) =\u003E {\r\n t = v;\r\n});","IsDeferred":false},{"Name":"for..of","Code":"for (const v of array) {\r\n t = v;\r\n}","IsDeferred":false}]}