{"ScriptPreparationCode":"var array = new Array(100);","TestCases":[{"Name":"for","Code":"for (var index = 0; index \u003C array.length; index\u002B\u002B) {\r\n console.log(array[index])\r\n}","IsDeferred":false},{"Name":"foreach","Code":"array.forEach((value) =\u003E {\r\n console.log(value);\r\n});","IsDeferred":false},{"Name":"for..of","Code":"for (const value of array) {\r\n console.log(value);\r\n}","IsDeferred":false},{"Name":"for..in","Code":"for (const index in array) {\r\n console.log(array[index]);\r\n}","IsDeferred":false}]}