let array = ["A", "B", "C"]; //Removes the first element of the array array.shift(); //=========================== console.log(array); //output => //["B", "C"]