May 2011
Intermediate to advanced
1096 pages
40h 54m
English
Array.pop() — remove and return the last element of an array
array.pop()
The last element of
array.
pop() deletes the last
element of array, decrements the array
length, and returns the value of the element that it deleted. If the
array is already empty, pop()
does not change the array and returns the undefined value.
pop(), and its companion
method push(), provide the
functionality of a first-in, last-out stack. For example:
varstack=[];// stack: []stack.push(1,2);// stack: [1,2] Returns 2stack.pop();// stack: [1] Returns 2stack.push([4,5]);// stack: [1,[4,5]] Returns 2stack.pop()// stack: [1] Returns [4,5]stack.pop();// stack: [] Returns 1
Read now
Unlock full access