{"ScriptPreparationCode":"var data = Object.entries({ ...Array.from(Array(10000).keys()) });","TestCases":[{"Name":"reduce with same obj","Code":"data.reduce((map, [price, vol]) =\u003E {\r\n map[price] = vol;\r\n return map;\r\n}, {});","IsDeferred":false},{"Name":"creating new object","Code":"data.reduce((map, [price, vol]) =\u003E {\r\n return {\r\n\t...map,\r\n [price]: vol,\r\n };\r\n}, {});","IsDeferred":false},{"Name":"fromEntries","Code":"Object.fromEntries(data);","IsDeferred":false}]}