shift array js code example
Example 1: javascript remove first item from array
var colors = ["red", "green", "blue"];
var red=colors.shift();
Example 2: removing first item array js
var list = ["bar", "baz", "foo", "qux"];
list.shift()
Example 3: js add element to front of array
var numbers = ["2", "3", "4", "5"];
numbers.unshift("1");
Example 4: array shift javascript
const array1 = [1, 2, 3];
const firstElement = array1.shift();
console.log(array1);
console.log(firstElement);
Example 5: javascript shift
let array = ["A", "B", "C"];
array.shift();
console.log(array);