在JavaScript中,我們可以使用Array對象的reverse()方法將數組中的元素反向排列。注意,reverse()是一種“排列”方法,而不是“排序”方法。
reverse,就是“反向”的意思。
語法:
數組對象.reverse();
說明:
reverse()方法會改變原來的數組,而不是創建新的數組。
舉例:
在線測試<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script type="text/javascript"> //創建數組的同時對元素賦值 var arr = new Array(3,1,2,5,4); document.write("原數組元素:" + arr); document.write("<br/>"); document.write("反向排列後的數組元素:" + arr.reverse()); </script> </head> <body> </body> </html>
在浏覽器預覽效果如下: