最小值:function getMin(array){ return Math.min.apply( Math, array );}
最大值:function getMax(array){ return Math.max.apply( Math, array );}