function _max(array) {
    // 补全代码
    return Math.max(...array);
}//利用Math.max函数和扩展运算符...来写