Description
Removes the last element from an array and returns the value of that element.
Syntax
array1.pop()
Parameters
Returns
The last element of the array1.. For example:
a = new Array("a", "b", "c", "d");
trace(a.pop());
//output: d
trace(a);
//output: a,b,c