Try this
var myarray = ["item 1", "item 2", "item 3", "item 4"]; //removes the first element of the array, and returns that element apart from item 1. myarray.shift(); console.log(myarray);