{"ScriptPreparationCode":"var array = new Array(10000);\r\nvar bool = true;","TestCases":[{"Name":"forEach","Code":"array.forEach(e=\u003E{\r\n\te = 100;\r\n \te\u002B\u002B;\r\n \tbool = !bool;\r\n})","IsDeferred":false},{"Name":"for..in","Code":"for (let i in array) {\r\n\tarray[i] = 100;\r\n \tarray[i]\u002B\u002B;\r\n bool = !bool;\r\n}","IsDeferred":false},{"Name":"for..of","Code":"for (let i of array) {\r\n\ti = 100;\r\n \ti\u002B\u002B;\r\n\tbool = !bool;\r\n}","IsDeferred":false},{"Name":"for","Code":"for (let i=0; i\u003Carray.length; i\u002B\u002B) {\r\n\tarray[i] = 100;\r\n \tarray[i]\u002B\u002B;\r\n\tbool = !bool;\r\n}","IsDeferred":false}]}