let myArray = ['a','b','c','d']; oldArray.shift();//esta función retorna el elemento eliminado console.log(myArray); //Outputs: ['b','c','d']