{"ScriptPreparationCode":"const map = new Map();\r\nfor (let i = 0; i \u003C 1000000; i\u002B\u002B) {\r\n map.set(i, Math.random() * 1000);\r\n}\r\n","TestCases":[{"Name":"for-i","Code":"for (let i = 0; i \u003C map.size; i\u002B\u002B) {\r\n const value = map.get(i);\r\n const str = value.toString(10);\r\n}","IsDeferred":false},{"Name":"forEach","Code":"map.forEach((value, key) =\u003E {\r\n const str = value.toString(10);\r\n});\r\n","IsDeferred":false},{"Name":"for-of","Code":"for (const [key, value] of map) {\r\n const str = value.toString(10);\r\n}\r\n","IsDeferred":false}]}