{"ScriptPreparationCode":"\r\nvar characters = \u0027ABCDEFGHIJKLMNOPQRSTUVWXYZ\u0027;\r\n\r\nvar map = new Map();\r\nvar obj = {};\r\n\r\nvar i = 0, j = 0, count = 10000, ch, a;\r\n\r\nfor (j = 0; j \u003C 10; j\u002B\u002B) { \r\n map.set(characters[j], \u0022qwertyuiop\u0022);\r\n}\r\n\r\nfor (j = 0; j \u003C 10; j\u002B\u002B) {\r\n obj[characters[j]] = \u0022qwertyuiop\u0022;\r\n}\r\n","TestCases":[{"Name":"Map Get","Code":"for (i = 0; i \u003C count; i\u002B\u002B) {\r\n ch = Math.floor(Math.random() * 10)\r\n a = map.get(ch);\r\n}","IsDeferred":false},{"Name":"Object Get","Code":"for (i = 0; i \u003C count; i\u002B\u002B) {\r\n ch = Math.floor(Math.random() * 10)\r\n a = obj[ch];\r\n}","IsDeferred":false}]}