SyntaxFix
Write A Post
Hire A Developer
Questions
The easiest way is using shift(). If you have an array, the shift function shifts everything to the left.
shift()
shift
var arr = [1, 2, 3, 4]; var theRemovedElement = arr.shift(); // theRemovedElement == 1 console.log(arr); // [2, 3, 4]