Lets say I have an array
[0, 132, 432, 342, 234]
What is the easiest way to get rid of the first element? (0)
"pop"ing the first element of an Array is called "shift" ("unshift" being the operation of adding one element in front of the array).