how to copy elements from one array to another except last element in java code example
Example 1: javascript how to get every element after the 1st in an array
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'
Example 2: every element in list after first javascript
var middlePoints = ['A', 'B', 'C', 'D'];
middlePoints.shift();
console.log(middlePoints); //['B', 'C', 'D']