{"ScriptPreparationCode":"var array = new Array(100).fill(1);\r\n\r\nwindow.x = 0;","TestCases":[{"Name":"for","Code":"for (var i = 0; i \u003C array.length; i\u002B\u002B) {\r\n x = (x \u002B array[i]) \u003E\u003E\u003E 0;\r\n}","IsDeferred":false},{"Name":"foreach","Code":"array.forEach(function(e) {\r\n x = (x \u002B e) \u003E\u003E\u003E 0;\r\n});","IsDeferred":false},{"Name":"some","Code":"array.some(function(e) {\r\n x = (x \u002B e) \u003E\u003E\u003E 0;\r\n});","IsDeferred":false},{"Name":"for..of","Code":"for (var e of array) {\r\n x = (x \u002B e) \u003E\u003E\u003E 0;\r\n}","IsDeferred":false}]}