pop() Array Method | JavaScript Array Method
Somanath Goudar
Posted on March 21, 2021
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
Example:
var fruits = ["Banana", "Orange", "Apple", "Mango"];
var x = fruits.pop(); // the value of x is "Mango"
💖 💪 🙅 🚩
Somanath Goudar
Posted on March 21, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
javascript Mastering JavaScript's Array Powerhouses: forEach, map, filter, reduce, spread, and rest
November 23, 2024