{"ScriptPreparationCode":"var arr =new Array(10000);","TestCases":[{"Name":"while","Code":"let i=0;\r\nwhile(i \u003C arr.length) {\r\n // do stuff\r\n i\u002B\u002B;\r\n}","IsDeferred":false},{"Name":"for","Code":"for(let i=0; i\u003Carr.length; i\u002B\u002B) {\r\n // do stuff\r\n}","IsDeferred":false},{"Name":"forEach","Code":"arr.forEach((element) =\u003E {\r\n // do stuff\r\n});","IsDeferred":false},{"Name":"for of","Code":"for(const element of arr) {\r\n // do stuff\r\n}","IsDeferred":false}]}