Add to or remove the first element from an array.
Source Code
let fruits = ["Banana", "Orange"];
fruits.unshift("Apple"); // Add to the start
console.log(fruits); // ["Apple", "Banana", "Orange"]
let firstFruit = fruits.shift(); // Remove from the start
console.log(firstFruit); // "Apple"
console.log(fruits); // ["Banana", "Orange"]