Array.prototype.max = function () { return Math.max.apply({}, this) } Array.prototype.min = function () { return Math.min.apply({}, this) }
例如:
[1,2,3].max()// => 3
[1,2,3].min()// => 1
技术交流QQ群:15129679
Array.prototype.max = function () { return Math.max.apply({}, this) } Array.prototype.min = function () { return Math.min.apply({}, this) }
例如:
[1,2,3].max()// => 3
[1,2,3].min()// => 1
技术交流QQ群:15129679