DEV Community

Cover image for pop() Array Method | JavaScript Array Method
Somanath Goudar
Somanath Goudar

Posted on • Updated on

pop() Array Method | JavaScript Array Method

You can Prefer to Read or you can Watch on YouTube:

=> The pop() method removes the last element from an array
=> The pop() method returns the value that was "popped out"

Example:

// Consider an array of Fruits
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.pop();  // Removes the last element ("Mango") from fruits
Enter fullscreen mode Exit fullscreen mode

Example:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
var x = fruits.pop();      // the value of x is "Mango"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)