{"ScriptPreparationCode":"dataArr = [...Array(10000)].map((_, id) =\u003E ({ id, data: Math.random() }));\r\ndataMap = new Map(dataArr.map(v =\u003E [v.id, v]));","TestCases":[{"Name":"Array.find()","Code":"dataArr.find((item) =\u003E item.id === Math.floor(Math.random() * 10000))","IsDeferred":false},{"Name":"Map.get()","Code":"dataMap.get(Math.floor(Math.random() * 10000))","IsDeferred":false}]}