{"ScriptPreparationCode":"\r\nwindow.objA = {};\r\nwindow.mapA = new Map();\r\nfor (let i = 0; i \u003C 1000; i\u002B\u002B) {\r\n\t const val = Math.floor(Math.random() * i * 32);\r\n \tobjA[String(val)] = true;\r\n \tmapA.set(val, true);\r\n}\r\n","TestCases":[{"Name":"Read obj","Code":"for (const i in objA) {\r\n \tconst b = objA[i]; \r\n}","IsDeferred":false},{"Name":"Read map","Code":"for (const i in mapA) {\r\n \tconst b = mapA.get(i); \r\n}","IsDeferred":false}]}