how to remove the last item from an array code example
Example 1: js array delete last
array.pop()
Example 2: take off element form end of array
const colors = ["Blue", "Green", "Red", "Yellow"];
colors.pop();
console.log(colors); // ["Blue", "Green", "Red"]