Saturday, January 17, 2026
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
32474 POSTS0 COMMENTS
Milvus
118 POSTS0 COMMENTS
Nango Kala
6846 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12062 POSTS0 COMMENTS
Shaida Kate Naidoo
6985 POSTS0 COMMENTS
Ted Musemwa
7219 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6911 POSTS0 COMMENTS