remove from beginning of array javascript code example
Example 1: javascript remove first element from array
var arr = [1, 2, 3, 4];
var theRemovedElement = arr.shift();
console.log(arr);
Example 2: how to take an element out of an array in javascript
var data = [1, 2, 3];
data = data.splice(1, 1);
data = data.pop();
Example 3: remove first element of array javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"]
fruits.shift()
Example 4: es6 remove first element of array
var myarray = ["item 1", "item 2", "item 3", "item 4"];
alert(myarray.shift());
alert(myarray.pop());
Example 5: javascript array remove first
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.shift();
Example 6: javascript how to remove first element of array
var colors = ["red", "blue", "green"]
var firstColor = colors.shift()
console.log(firstColor)
console.log(colors)