what removes the first element of a lit in javascript code example
Example: js remove first item
let myArray = [1, 2, 3, 4, 5];
let removedElement = myArray.shift();
let myArray = [1, 2, 3, 4, 5];
let removedElement = myArray.shift();