javascript comment obtenir chaque élément après le 1er dans un tableau

var arguments = ['One', 'Two', 'Three'];
var middle = arguments.slice(1, -1); // will take away the 1st from the start and the 1st from the end
console.log(middle); // once logged it will only show 'Two'
Helpless Hornet