This can be done in one line with lodash _.tail:
var arr = ["item 1", "item 2", "item 3", "item 4"]; console.log(_.tail(arr));