I have an array that always ends up with 1 blank entry at the end.
What's the most efficient way of deleting the last element of an array?
The only way I can think of is to create a counter, subract 1 and do an if loop.
That seems like overkill though.