{"ScriptPreparationCode":"var arr = [];\r\nfor (let i = 0; i \u003C 100000; i\u002B\u002B) {\r\n arr[i] = i;\r\n}\r\nfunction someFn(i) {\r\n return i * 3 * 8;\r\n}","TestCases":[{"Name":"forEach","Code":"arr.forEach(item =\u003E someFn(item));","IsDeferred":false},{"Name":"optimized for","Code":"for (var i = 0, len = arr.length; i \u003C len; i\u002B\u002B) {\r\n someFn(arr[i]); \r\n}","IsDeferred":false},{"Name":"for of","Code":"for(const x of arr) {\r\n someFn(x);\r\n}","IsDeferred":false},{"Name":"usual for","Code":"for (var i = 0; i \u003C arr.length; i\u002B\u002B) {\r\n someFn(arr[i]); \r\n}","IsDeferred":false}]}