2014年7月10日
摘要: //返回数组中的最小值function min(target){ return Math.min.apply(0,target); }//返回数组中的最大值 function max(target){ return Math.max.apply(0,target); ... 阅读全文
posted @ 2014-07-10 00:11 violinxliu 阅读(238) 评论(0) 推荐(0) 编辑