Why not use ES6?
var myarray = ["item 1", "item 2", "item 3", "item 4"]; const [, ...rest] = myarray; console.log(rest)