{"ScriptPreparationCode":"var properties = Array.from({ length: 1000 }, () =\u003E [Math.random().toString(), Math.random()])","TestCases":[{"Name":"Manual","Code":"const result = {}\r\nfor (const [key, value] of properties) {\r\n\tresult[key] = value \u002B 1\r\n}","IsDeferred":false},{"Name":"Object.fromEntries","Code":"const result = Object.fromEntries(properties)","IsDeferred":false},{"Name":"Object.fromEntries and Array.map","Code":"const result = Object.fromEntries(properties.map(([key,value]) =\u003E [key, value \u002B 1]))","IsDeferred":false}]}