{"ScriptPreparationCode":"var map = new Map([[1, 1]]);\r\nvar obj = {1: 1};\r\nvar count = 100; \r\nvar a, i;\r\n\r\n\r\nfor (let j = 0; j \u003C count; j\u002B\u002B) {\r\n map.set(j, j);\r\n obj[j] = j;\r\n}","TestCases":[{"Name":"Obj get","Code":"for (i = 0; i \u003C count; i\u002B\u002B) {\r\n a = obj[i];\r\n}","IsDeferred":false},{"Name":"Map get","Code":"for (i = 0; i \u003C count; i\u002B\u002B) {\r\n a = map.get(i);\r\n}","IsDeferred":false},{"Name":"Map has","Code":"for (i = 0; i \u003C count; i\u002B\u002B) {\r\n a = map.has(i)\r\n}","IsDeferred":false}]}