{"ScriptPreparationCode":"const arr = new Array(10000);","TestCases":[{"Name":"for loop","Code":"for (let i = 0; i \u003C arr.length; i\u002B\u002B) {\r\n console.log(arr[i]);\r\n}","IsDeferred":false},{"Name":"forEach","Code":"arr.forEach((value, index) =\u003E {\r\n console.log(value, index);\r\n});","IsDeferred":false},{"Name":"for of","Code":"for (const value of arr) {\r\n console.log(value);\r\n}","IsDeferred":false}]}