js remove first and last element from array

JavaScript
a = [1,2,3,4]
b = a.slice(1,-1);
Source

Also in JavaScript: