1var arguments = ['One', 'Two', 'Three'];
2var middle = arguments.slice(1, -1); // will take away the 1st from the start and the 1st from the end
3console.log(middle); // once logged it will only show 'Two'
1var middlePoints = ['A', 'B', 'C', 'D'];
2middlePoints.shift();
3
4console.log(middlePoints); //['B', 'C', 'D']