Version 1.0.0
Redid the pop/top of current stacks.
- Normal JS implementation I see around the internet is the UArrayStack of stacks. It's simple and people don't think much about it.
- I built a bounded version which doesn't deal with growing items
- LinkedStack is a stack built ontop of a linked list.