how to remove last element in array and return array again code example

Example 1: javascript remove last element from array

var colors = ["red","blue","green"];
colors.pop();

Example 2: javascript remove last item

array.pop();

// Example
var colors = ['Yellow', 'Red', 'Blue', 'Green'];
var removedColor = colors.pop(); // Green
console.log(colors); // ['Yellow', 'Red', 'Blue']

Example 3: take off element form end of array

const colors = ["Blue", "Green", "Red", "Yellow"];
colors.pop();

console.log(colors); // ["Blue", "Green", "Red"]