Friday, September 5, 2025
HomeLanguagesJavascriptTypeScript | Array push() Method

TypeScript | Array push() Method

The Array.push() is an inbuilt TypeScript function which is used to append the given element(s) in the last of the array and returns the length of the new array. 
Syntax:

 array.push(element1, ..., elementN)

Parameter: This method accept a single parameter as mentioned above and described below:

  • element1, …, elementN : This parameter is the elements to add to the end of the array.

Return Value: This method returns the length of the new array. 
Below examples illustrate Array push() method in TypeScript:

Example 1: 

JavaScript




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


Output: 

[11,89,23,7,98,8]

Example 2: 

JavaScript




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


Output: 

[2,5,6,3,8,9,0,5,12,9]
RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6638 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11866 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7027 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS