{"ScriptPreparationCode":"const planes = new Array(1_000_000).fill(2);","TestCases":[{"Name":"for-of","Code":"for (const plane of planes) {\r\n Math.sqrt(plane);\r\n}","IsDeferred":false},{"Name":"for-index","Code":"for (let i = 0; i \u003C planes.length; i\u002B\u002B) {\r\n const plane = planes[i];\r\n\r\n Math.sqrt(plane);\r\n}","IsDeferred":false}]}