{"ScriptPreparationCode":"function getRandomInt(max) {\r\n return Math.floor(Math.random() * Math.floor(max));\r\n}\r\nvar a = [...Array(10000)].map(_ =\u003E Math.random(1000000));\r\nvar ta = (new Float32Array(10000)).map(_ =\u003E Math.random(1000000));","TestCases":[{"Name":"array max apply","Code":"Math.max.apply(Math, a);","IsDeferred":false},{"Name":"typedArray max apply","Code":"Math.max.apply(Math, ta);","IsDeferred":false},{"Name":"array max","Code":"Math.max(...a);","IsDeferred":false},{"Name":"typedArray max","Code":"Math.max(...ta);","IsDeferred":false}]}