Reverse an Array
<html> <body> <button onclick="var myA = new Array(10,11,12); myA.reverse(); alert(myA);">Array: REVERSE</button> </body> </html>