* @function ArrayStatistic.getMax * @description 最大值。 * @param {Array. } array 需要求最大值的参数。 * @returns {number} 返回最大值。
(array)
| 131 | * @returns {number} 返回最大值。 |
| 132 | */ |
| 133 | static getMax(array){ |
| 134 | return this.getInstance(array).max(); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * @function ArrayStatistic.getMin |
no test coverage detected