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    vararr = [ 11, 89, 23, 7, 98 ];     // use of unshift() method     varstring= arr.unshift(11);         // printing    console.log( string);</script> | 
 
Output:  
6
Example 2:
JavaScript
| <script>    // Driver code    vararr = ["G", "e", "e", "k", "s", "f", "o",               "r", "g", "e", "e", "k", "s"];     varval;     // 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"]
 
				 
					


