<script language="JavaScript"> var array_1 = new Array('a','b','c'); array_1.reverse(); document.write( array_1 ); </script>
运行该例子,输出:
c,b,a
0