Saturday, October 25, 2025
HomeLanguagesJavascriptTypeScript | Array pop() Method

TypeScript | Array pop() Method

The Array.pop() is an inbuilt TypeScript function which is used to removes the last element from an array and returns that element. 
Syntax:

array.pop(); 

Parameter: This methods does not accept any parameter. 
Return Value: This method returns the removed element from the array. 
Below examples illustrate Array pop() method in TypeScript.

Example 1: 

JavaScript




<script>
    // Driver code
    var arr = [ 11, 89, 23, 7, 98 ]; 
  
    // use of pop() method 
    var val = arr.pop()
       
    // printing element
    console.log( val );
</script>


Output: 

98

Example 2: 

JavaScript




<script>
    // Driver code
    var arr = [2, 5, 6, 3, 8, 9]; 
    var val,j=0;
   
    // use of pop() method    
    for(j=0; j<4 ; j++){
      val = arr.pop()
       
      // printing element
      console.log(val);
    }
</script>


Output: 

9
8
3
6
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS