{"ScriptPreparationCode":"var arr = []\r\nfor (i = 0; i \u003C 1000; i\u002B\u002B) {\r\n arr.push(Math.random() * i)\r\n}","TestCases":[{"Name":"Max with apply","Code":"Math.max.apply(Math, arr)","IsDeferred":false},{"Name":"Max with spread operator","Code":"Math.max(...arr)","IsDeferred":false}]}