Search w3schools.com:

SHARE THIS PAGE

JavaScript indexOf() Method

Array Object Reference JavaScript Array Object

Example

Search an array for the item "Apple":

var fruits = ["Banana", "Orange", "Apple", "Mango"];
var a = fruits.indexOf("Apple");

The result of a will be:

2

Meaning that "Apple" is located at position 2 in the array.

Try it yourself »

Definition and Usage

The indexOf() method searches the array for the specified item, and returns its position.

The search will start at the specified position, or at the beginning if no start position is specified, and end the search at the end of the array.

Returns -1 if the item is not found.

If the item is present more than once, the indexOf method returns the position of the first occurence.

Note: The first item has position 0, the second item has position 1, and so on.

Tip: If you want to search from end to start, use the lastIndexOf() method


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The indexOf() method is not supported in Internet Explorer 8 and earlier.


Syntax

array.indexOf(item,start)

Parameter Values

Parameter Description
item Required. The item to search for
start Optional. Where to start the search. Negative values will start at the given position counting from the end, and search to the end.

Return Value

Type Description
Number The position of the specified item, otherwise -1

Technical Details

JavaScript Version: 1.6


More Examples

Example

Search an array for the item "Apple", starting the search at position 4:

var fruits=["Banana","Orange","Apple","Mango","Banana","Orange","Apple"];
var a = fruits.indexOf("Apple",4);

The result of a will be:

6

Try it yourself »

Array Object Reference JavaScript Array Object

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]