xxxxxxxxxx
array.pop();
// Example
var colors = ['Yellow', 'Red', 'Blue', 'Green'];
var removedColor = colors.pop(); // Green
console.log(colors); // ['Yellow', 'Red', 'Blue']
xxxxxxxxxx
array.pop(); //returns popped element
//example
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.pop(); // fruits= ["Banana", "Orange", "Apple"];
xxxxxxxxxx
var array = [1, 2, 3, 4, 5, 6];
array.pop();
console.log(array);
//Output in console section:
//[1, 2, 3, 4, 5]
xxxxxxxxxx
let arr = [10,20,30,40,50];
arr.pop();
console.log(arr); // => [10,20,30,40]
xxxxxxxxxx
var arr = ["f", "o", "o", "b", "a", "r"];
arr.pop();
console.log(arr); // ["f", "o", "o", "b", "a"]