{"ScriptPreparationCode":"var iterations = 1000000;//, 10000000\r\nvar myArray = Array.from(Array(iterations).keys());\r\nvar total = 0;","TestCases":[{"Name":"for","Code":"var len = myArray.length;\r\nfor (let i = 0; i \u003C len; i\u002B\u002B) {\r\n total \u002B= myArray[i];\r\n}\r\n","IsDeferred":false},{"Name":".forEach","Code":"myArray.forEach((item) =\u003E {\r\n total \u002B= item\r\n})","IsDeferred":false},{"Name":"for...in","Code":"for (var i in myArray) {\r\n total \u002B= myArray[i];\r\n}","IsDeferred":false},{"Name":"for...of","Code":"for (var item of myArray) {\r\n total \u002B= item\r\n}","IsDeferred":false},{"Name":"While","Code":"var i = myArray.length;\r\nwhile (i--) {\r\n total \u002B= myArray[i];\r\n}","IsDeferred":false}]}