{"ScriptPreparationCode":"var arr = [];\r\nfor (var i = 0; i \u003C 2048; i\u002B\u002B) {\r\n arr.push(Math.floor(Math.random() * 4096));\r\n}","TestCases":[{"Name":"Apply","Code":"Math.max.apply(arr);","IsDeferred":false},{"Name":"Spread","Code":"Math.max(...arr);","IsDeferred":false},{"Name":"Spread with existing args","Code":"Math.max(1, 2, 4, 2, 3, 1, 2, ...arr);","IsDeferred":false}]}