{"ScriptPreparationCode":"function getRandomInt(max) {\r\n return Math.floor(Math.random() * Math.floor(max));\r\n}\r\n\r\nvar arr = [];\r\nfor(var i = 0; i \u003C 51; i\u002B\u002B){\r\n arr.push({value:getRandomInt(100)});\r\n}","TestCases":[{"Name":"lodash","Code":"_.sortBy(arr,\u0022value\u0022);","IsDeferred":false},{"Name":"sort","Code":"arr.sort((a, b) =\u003E {\r\n if (a \u003C b) {\r\n return -1;\r\n } else if (a \u003E b) {\r\n return 1;\r\n }\r\n return 0;\r\n});","IsDeferred":false}]}