Skip to content
Latest: JSX in React explained clearly without any framework

indexOf() JavaScript String Method – How to Get Text Index

Whenever you use indexOf() on a string, the method does the following:

  1. It searches its calling string for the method’s first argument.
  2. It returns the index of the first match, or -1 if the method found no match.

Syntax of the indexOf() Method

indexOf() accepts two arguments. Here is the syntax:

callingString.indexOf(valueToFind, startIndex);

Argument 1: valueToFind

A valueToFind is the first argument accepted by the indexOf() method. It defines the value you wish to find in the calling string.

Example 1: Find the index of day

"SunDay, Tuesday, and Friday are good Days".indexOf("day");
// The invocation above will return: 12

Try Editing It

Example 2: Find the index of Day

"SunDay, Tuesday, and Friday are good Days".indexOf("Day");
// The invocation above will return: 3

Try Editing It

Example 3: Find the index of 3

"Day1, day-3, and day 6 are good Days".indexOf(3);
// The invocation above will return: 10

Try Editing It

Argument 2: startIndex

The startIndex argument is optional. It specifies the index where you want the computer to start searching for the valueToFind argument.

Example 1: Find the index of day from the 13th index

"SunDay, Tuesday, and Friday are good Days".indexOf("day", 13);
// The invocation above will return: 24

Try Editing It

The startIndex argument’s default value is 0. Therefore, if omitted or negative, the search will begin at index 0.

Here’s an example:

"SunDay, Tuesday, and Friday are good Days".indexOf("day", -13);
// The invocation above will return: 12

Try Editing It

Example 2: Find the index of Day from the 4th index

"SunDay, Tuesday, and Friday are good Days".indexOf("Day", 4);
// The invocation above will return: 37

Try Editing It

Suppose startIndex is greater than the calling string’s length. In such a case, the computer will ignore the search.

Here’s an example:

"SunDay, Tuesday, and Friday are good Days".indexOf("Day", 75);
// The invocation above will return: -1

Try Editing It