{"ScriptPreparationCode":"const arr = [\r\n [1979,175],\r\n [1980,100],\r\n [1981,-50],\r\n [1982,-95],\r\n [1983,150]\r\n];","TestCases":[{"Name":"Reduce","Code":"const arr = [\r\n [1979,175],\r\n [1980,100],\r\n [1981,-50],\r\n [1982,-95],\r\n [1983,150]\r\n];\r\nvar max1=arr.reduce((max,crr)=\u003EMath.max(max,crr[1]),-Infinity);","IsDeferred":false},{"Name":"Math.max","Code":"const arr = [\r\n [1979,175],\r\n [1980,100],\r\n [1981,-50],\r\n [1982,-95],\r\n [1983,150]\r\n];\r\nvar max2=Math.max(...arr.map(v=\u003EMath.max(v[1],-Infinity)));","IsDeferred":false}]}