队列方法队列方法队列采用的先进先出的策略 从队尾推入元素采用pop(),从队列首部推出采用shift()。 { let arrays = [1,2,3,4,5]; arrays.push(5,6); arrays.shift();}