// example (remove the last element in the array) let yourArray = ["aaa", "bbb", "ccc", "ddd"]; yourArray.shift(); // yourArray = ["bbb", "ccc", "ddd"] // syntax: // <array-name>.shift();