颠倒数组中元素的顺序。
arrayObject.reverse();
该方法会改变原来的数组,而不会创建新的数组。
var Arr = [1, 2, 3, 4, 5, 6]; console.log( Arr.reverse() );
>>> [6, 5, 4, 3, 2, 1]