当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript reverse()方法
The reverse() method is used to reverse the order of the elements in an array.
reverse() 方法能把数组中的元素排列次序颠倒过来。
arrayObject.reverse() |
Note: The reverse() method changes the original array.
注意:reverse()方法会改变原始的数组
In this example we will create an array, and then reverse the order of it:
在这个举例中我们将建立一个数组,紧接着将元素的排列次序颠倒:
<script type="text/javascript"> var arr = new Array(3) document.write(arr + "<br />") </script> |
The output of the code above will be:
上面代码的输出结果为:
Jani,Hege,Stale |
reverse()
How to reverse the order of the elements in an array.
怎样将数组里的元素排列次序颠倒