shift an Array
<html> <body> <button onclick="var myA = new Array(10,11,12); myA.shift(); alert(myA);"> Array SHIFT </button> </body> </html>