doc: port old docs for Array#indexOf, update examples slightly

This commit is contained in:
tjcrowder 2009-09-07 12:42:24 +01:00 committed by Tobie Langel
parent 798a367a3d
commit 70dbcf39eb
1 changed files with 15 additions and 4 deletions

View File

@ -313,11 +313,22 @@ Array.from = $A;
/**
* Array#indexOf(item[, offset = 0]) -> Number
* - item (?): A value that may or may not be in the array.
* - offset (Number): The number of initial items to skip before beginning the
* search.
* - offset (Number): The number of initial items to skip before beginning
* the search.
*
* Returns the position of the first occurrence of `item` within the array — or
* `-1` if `item` doesn't exist in the array.
* Returns the index of the first occurrence of `item` within the array,
* or `-1` if `item` doesn't exist in the array.
*
* ### Examples
*
* [3, 5, 6, 1, 20].indexOf(1)
* // -> 3
*
* [3, 5, 6, 1, 20].indexOf(90)
* // -> -1 (not found)
*
* ['1', '2', '3'].indexOf(1);
* // -> -1 (not found, 1 !== '1')
**/
function indexOf(item, i) {
i || (i = 0);