{"ScriptPreparationCode":"const amountOfIterations = 1000;\r\n\r\nconst doSomethingThatDoesNotNeedAccessToTheItem = () =\u003E {\r\n\t1\u002B1;\r\n}","TestCases":[{"Name":"for loop","Code":"for(let i = 0; i \u003C amountOfIterations; \u002B\u002Bi) {\r\n doSomethingThatDoesNotNeedAccessToTheItem();\r\n}\r\n","IsDeferred":false},{"Name":"create array to iterate with for..of","Code":"const arrayToIterateOver = new Array(amountOfIterations);\r\n\r\nfor (const _item of arrayToIterateOver) {\r\n doSomethingThatDoesNotNeedAccessToTheItem();\r\n}","IsDeferred":false}]}