{"ScriptPreparationCode":"function noop() {}\r\nmap = new Map();\r\nkeys = [];\r\n\r\nfor (let i = 0; i \u003C 10000; i\u002B\u002B) {\r\n const k = new Number(i);\r\n keys.push(k);\r\n if (k % 2 !== 0) map.set(k, i);\r\n}","TestCases":[{"Name":".has()","Code":"keys.forEach(k=\u003E{\r\n if (map.has(k)) noop()\r\n})","IsDeferred":false},{"Name":".get() only","Code":"keys.forEach(k =\u003E {\r\n const v = map.get(k);\r\n if (v) noop(v);\r\n})","IsDeferred":false}]}