{"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 1000; i\u002B\u002B){\r\n arr.push({value:getRandomInt(1000)});\r\n}","TestCases":[{"Name":"sortby","Code":"_.sortBy(arr,\u0022value\u0022);","IsDeferred":false},{"Name":"orderby","Code":"_.orderBy(arr,\u0022value\u0022, [\u0027asc\u0027]);","IsDeferred":false},{"Name":"plain JS","Code":"arr.sort(function(a, b) {\r\n return a.value - b.value;\r\n});","IsDeferred":false},{"Name":"ES2015","Code":"arr.sort((a, b) =\u003E a.value - b.value);","IsDeferred":false}]}