To remove a value from the end of an array, we can use the pop method:
numbers.pop();
The push and pop methods allow an array to emulate a basic stack data structure, which is the subject of the next chapter.
The output of our array will be the numbers from -4 to 12. The length of our array is 17.
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.