Answers for "es6 remove first element of array"

20

javascript remove first element from array

var arr = [1, 2, 3, 4]; 
var theRemovedElement = arr.shift(); // theRemovedElement == 1
console.log(arr); // [2, 3, 4]
Posted by: Guest on July-10-2020
1

es6 remove first element of array

var myarray = ["item 1", "item 2", "item 3", "item 4"];

//removes the first element of the array, and returns that element.
alert(myarray.shift());
//alerts "item 1"

//removes the last element of the array, and returns that element.
alert(myarray.pop());
//alerts "item 4"
Posted by: Guest on August-16-2020

Code answers related to "es6 remove first element of array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language