队列方法

队列采用的先进先出的策略

从队尾推入元素采用pop(),从队列首部推出采用shift()

  1. {
  2. let arrays = [1,2,3,4,5];
  3. arrays.push(5,6);
  4. arrays.shift();
  5. }