var colors = ["red", "orange", "yellow", "green"]; colors = colors.splice(3, 1); // Starts removing from the third element, and deletes 1 element // Array.splice(startingElement, elementYouWantToRemove);