Pop an element from Array
<html> <body> <button onclick="var myA = new Array(10,11,12); myA.pop(); alert(myA);"> Array: POP </button> </body> </html>