数组的reverse()方法

该方法将数组中元素的位置颠倒,并返回该数组。

function _reverse(array) {
    // 补全代码
    return array.reverse();
}