ES6 - Array Method pop()



pop() method removes the last element from an array and returns that element.

Syntax

array.pop();   

Return Value

Returns the removed element from the array.

Example

var numbers = [1, 4, 9]; 
var element = numbers.pop(); 
console.log("element is : " + element );  

var element = numbers.pop(); 
console.log("element is : " + element );    

Output

element is : 9 
element is : 4
Advertisements