remove end of array javascript code example
Example 1: remove last element from array javascript
array.splice(-1,1)
Example 2: take off element form end of array
const colors = ["Blue", "Green", "Red", "Yellow"];
colors.pop();
console.log(colors); // ["Blue", "Green", "Red"]