Search w3schools.com:

SHARE THIS PAGE

JavaScript lastIndexOf() Method

Array Object Reference JavaScript Array Object

Example

Search an array for the item "Apple":

var fruits = ["Banana", "Orange", "Apple", "Mango"];
var a = fruits.lastIndexOf("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 lastIndexOf() method searches the array for the specified item, and returns it's position.

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

Returns -1 if the item is not found.

If the item to search for is present more than once, the lastIndexOf method returns the position of the last occurence.

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


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

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


Syntax

array.lastIndexOf(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 beginning

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":

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

The result of a will be:

6

Try it yourself »

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.lastIndexOf("Apple",4);

The result of a will be:

2

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]