Shift What Shift does to an array is delete the first index of that array and move all indexes to the left. var array = [1, 2, 3]; array.shift(); console.log(array);