The JavaScript shift Method can be used to remove elements from the beginning of an array.
//Removes 1 from the beginning of the array
var aryTest = [1,2,3,4];
aryTest.shift();
document.write(aryTest);
Related Articles:
JavaScript unshift Method: Adding to an Array Beginning
JavaScript push Method: Adding to an Array End
JavaScript pop Method: Removing from an Array End