{"ScriptPreparationCode":"var map = new Map();\r\nvar obj = {};\r\nfor (let i = 0; i \u003C 100000; i\u002B\u002B) {\r\n const key = Math.random().toString(36).slice(2);\r\n const value = Math.random().toString(36).slice(2);\r\n map.set(key, value);\r\n obj[key] = value;\r\n}\r\nconst count = 1000;","TestCases":[{"Name":"Map lookup","Code":"for (let i = 0; i \u003C 1000; i\u002B\u002B) {\r\n const key = Math.random().toString(36).slice(2);\r\n a = map.get(key);\r\n}","IsDeferred":false},{"Name":"Object lookup","Code":"for (let i = 0; i \u003C 1000; i\u002B\u002B) {\r\n const key = Math.random().toString(36).slice(2);\r\n a = obj[key];\r\n}","IsDeferred":false}]}