Skip to content

Commit 6ac63eb

Browse files
update explanation for lastIndexOf()
The Array.prototype.lastIndexOf() return the last index of the matched element in the array.
1 parent fe84431 commit 6ac63eb

File tree

1 file changed

+2
-2
lines changed
  • 06_Arrays/01_Array Methods/07_Methods for Searching

1 file changed

+2
-2
lines changed

06_Arrays/01_Array Methods/07_Methods for Searching/00_.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ There are many methods that can help you find specific elements in an array. The
55
- returns `-1` is the element is not found
66

77
`arrayname.lastIndexOf(element, [leftOf])`
8-
- returns the index of the first match in the array
8+
- returns the index of the last match in the array
99
- returns `-1` is the element is not found
1010

1111
`arrayname.find(function)`
@@ -14,4 +14,4 @@ There are many methods that can help you find specific elements in an array. The
1414

1515
`arrayname.findIndex(function)`
1616
- returns the index of the leftmost element in the array, that meets the criteria in the function
17-
- if no such element is found, returns `-1`
17+
- if no such element is found, returns `-1`

0 commit comments

Comments
 (0)