So I have an 1D array and I do a Array Push Front(n), but the Array X size doesn't change. I know in Javascript the array will just auto-resize when you do a push and pop.
Basically I need the functionality of a FIFO List.
Is Array push and pop working as it should?