xxxxxxxxxx
let arr = [10,20,30,40,50];
arr.pop();
console.log(arr); // => [10,20,30,40]
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
array.pop();
// Example
var colors = ['Yellow', 'Red', 'Blue', 'Green'];
var removedColor = colors.pop(); // Green
console.log(colors); // ['Yellow', 'Red', 'Blue']
xxxxxxxxxx
var arr = ["f", "o", "o", "b", "a", "r"];
arr.pop();
console.log(arr); // ["f", "o", "o", "b", "a"]
xxxxxxxxxx
// example (remove the last element in the array)
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.pop(); // yourArray = ["aaa", "bbb", "ccc"]
// syntax:
// <array-name>.pop();