Friday, October 17, 2025
HomeLanguagesJavascriptTypeScript | String indexOf() Method

TypeScript | String indexOf() Method

The indexOf() is an inbuilt function in TypeScript which is used to get the index within the calling String object of the first occurrence of the specified value. 
Syntax:

string.indexOf(searchValue[, fromIndex]) 

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

  • searchValue: This parameter is a string representing the value to search for.
  • fromIndex: This parameter is a location within the calling string to start the search from.

Return Value: This method returns the index of the found occurrence, otherwise -1 if not found.

Below example illustrate the  String indexOf() method in TypeScriptJS:
Example 1: 

JavaScript




<script>
    // Original strings
    var str1 = new String('TypeScript | \
String indexOf() Method with example'); 
  
    // use of String indexOf() Method
    console.log(str1.indexOf("String"));
</script>


Output: 

13

Example 2: 

JavaScript




<script>
    // Original strings
    var str1 = new String('TypeScript | \
    String indexOf() Method with example'); 
  
    // use of String indexOf() Method
    console.log(str1.indexOf("Geeks"));
</script>


Output: 

-1
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS