Definition and Usage:
The pop() method removes the last element of an array, and returns that element.
Note: This method changes the length of an array.
Tip: To remove the first element of an array, use the shift() method.
Syntax
array.pop()
What is a drawback of JavaScript timers?