{"ScriptPreparationCode":"const arr = Array.from({ length: 1000 }, () =\u003E\r\n Math.floor(Math.random() * 100) \u002B 1\r\n);","TestCases":[{"Name":"array find","Code":"for (var i = 0; i \u003C 1000; i\u002B\u002B) {\r\n\tarr.find(v =\u003E v === i)\r\n}","IsDeferred":false},{"Name":"map get","Code":"const m = new Map()\r\narr.forEach(v =\u003E {\r\n m.set(v, v)\r\n})\r\n\r\nfor (var i = 0; i \u003C 1000; i\u002B\u002B) {\r\n\tm.get(i)\r\n}","IsDeferred":false}]}