Removes last element in array and returns the removed element
pop()
Adds a new element to an array and returns the new array length
push()
Removes the first array element and moves all the other elements to a lower index and returns the removed element
shift()
Adds a new element to an array at the beginning and returns the new array length
unshift()