摘要: Array.prototype.max = function(){ //最大值return Math.max.apply({},this)}Array.prototype.min = function(){ //最小值return Math.min.apply({},this)}var myMax ... 阅读全文
posted @ 2014-10-09 11:47 刘金宇 阅读(183) 评论(0) 推荐(0) 编辑