{"ScriptPreparationCode":"var array = new Array(100000);","TestCases":[{"Name":"for ","Code":"let toto = 0;\r\nfor (let index = 0; index \u003C array.length; index\u002B\u002B) {\r\n toto \u002B= array[index];\r\n}","IsDeferred":false},{"Name":"for of","Code":"let toto = 0;\r\nfor (const entry of array) {\r\n toto \u002B= entry;\r\n}","IsDeferred":false}]}