Thursday, October 9, 2025
HomeLanguagesJavascriptTypeScript | Array lastIndexOf() Method

TypeScript | Array lastIndexOf() Method

The Array.lastIndexOf() is an inbuilt TypeScript function which is used to get the last index at which a given element can be found in the array. 
 Syntax:

array.lastIndexOf(searchElement[, fromIndex])

Parameter: This method accepts two parameter as mentioned above and described below: 

  • searchElement : This parameter is the element to locate in the array.
  • fromIndex : This parameter is the index at which to start searching backwards.

Return Value: This method returns the index of the found element from the last. 
Below examples illustrate the Array lastIndexOf() method in TypeScript.
Example 1: 

JavaScript




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


Output: 

3

Example 2: 

JavaScript




<script>
    // Driver code
    var arr = [ 'a','b','c','a','e' ]; 
  
    // use of lastIndexOf() method 
    var val = arr.lastIndexOf("a")
    var val1 = arr.lastIndexOf("c")
       
    // printing element
    console.log(val);
    console.log(val1);
</script>


Output: 

3
2
RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6713 POSTS0 COMMENTS
Nicole Veronica
11876 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS