How would you examine items below the top of a stack?
use stack.pop( ) to remove the top element from a stack
How would you find out how many items are in a stack?
Use a counter, add one to the counter while stack.peek( ) !== undefined
What happens to the order of values that are moved from one stack to another?
The order of the values is reversed.
How can a stack be returned to it’s original state after examining its internal values?
By pushing the values of the inverted stack back onto the original stack