shift method in javascript 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: remove first element of array javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"]
fruits.shift()
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);