Thursday, September 18, 2025
HomeLanguagesJavascriptTypeScript | Array unshift() Method

TypeScript | Array unshift() Method

The Array.unshift() is an inbuilt TypeScript function that is used to add one or more elements to the beginning of an array and returns the new length of the array. 

Syntax:

array.unshift( element1, ..., elementN )

Parameter: This method accepts n number of similar elements.

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

Return Value: This method returns the length of the new array. 
Below example illustrate the  String unshift() method in TypeScriptJS:

Example 1: 

JavaScript




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


 
Output:  

6

Example 2:  

JavaScript




<script>
    // Driver code
    var arr = ["G", "e", "e", "k", "s", "f", "o",
               "r", "g", "e", "e", "k", "s"];
    var val;
  
    // use of unshift() method
    val = arr.unshift("f");
    console.log( val );
    console.log( arr );
</script>


 
Output:  

14
["f","G","e","e","k","s","f","o","r","g","e","e","k","s"]

 

RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6662 POSTS0 COMMENTS
Nicole Veronica
11835 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7053 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS