Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Removes the last element from an array and returns it.
function pop() : Object
Remarks
The push and pop methods enable you to simulate a stack, which uses the principle of last in, first out (LIFO) to store data.
If the array is empty, undefined is returned.
Example
The following example illustrates the use of the pop method.
var my_array = new Array();
my_array.push (5, 6, 7);
my_array.push (8, 9);
var s = "";
var number;
number = my_array.pop();
while (number != undefined)
{
s += number + " ";
number = my_array.pop();
}
print (s);
// Output: 9 8 7 6 5