{"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 100000; i\u002B\u002B) {\r\n arr.push({\r\n value: getRandomInt(100)\r\n });\r\n}","TestCases":[{"Name":"_.sortBy","Code":"_.sortBy(arr, (a) =\u003E a.value);","IsDeferred":false},{"Name":"array.prototype.sort","Code":"[...arr].sort((a,b) =\u003E a.value - b.value);","IsDeferred":false}]}