js shift code example
Example 1: remove first element from array javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.shift();
Example 2: removing first item array js
var list = ["bar", "baz", "foo", "qux"];
list.shift()
Example 3: array shift javascript
const array1 = [1, 2, 3];
const firstElement = array1.shift();
console.log(array1);
console.log(firstElement);
Example 4: javascript shift
let array = ["A", "B", "C"];
array.shift();
console.log(array);
Example 5: javascript remove first item from array
type answer