Baseline Widely available
indexOf()
æ¹æ³æåå³çµ¦å®å
ç´ æ¼é£åä¸ç¬¬ä¸å被æ¾å°ä¹ç´¢å¼ï¼è¥ä¸å卿¼é£åä¸ååå³ -1ã
åè¨»ï¼ è¥æ¯èª¿ç¨åä¸²çæ¹æ³ï¼è«åé± String.prototype.indexOf()
ã
const beasts = ["ant", "bison", "camel", "duck", "bison"];
console.log(beasts.indexOf("bison"));
// Expected output: 1
// Start from index 2
console.log(beasts.indexOf("bison", 2));
// Expected output: 4
console.log(beasts.indexOf("giraffe"));
// Expected output: -1
èªæ³
arr.indexOf(searchElement[, fromIndex])忏
searchElement
欲å¨é£å䏿å°çå ç´ ã
fromIndex
鏿æ§
é£å䏿å°çèµ·å§ç´¢å¼ãè¥éåç´¢å¼å¼å¤§æ¼æçæ¼é£åé·åº¦ï¼æç´æ¥åå³ -1ï¼æå³ä¸æå¨é£å䏿å°ãå¦æç´¢å¼å¼æ¯ä¸åè² æ¸ï¼æå¾é£åçæå¾ä¸åå¾åç®ï¼æå¾ä¸åçç´¢å¼å¼çº -1ï¼ä»¥æ¤é¡æ¨ã注æï¼å管å¾åç®ï¼ä½ä¾ç¶æå¾å·¦å¾å³å ¨é¨æå°ãå¦æè² æ¸ç´¢å¼å¼å¨åé è¨ç®ä¹å¾ä»ç¶å°æ¼ 0ï¼åæå¾å·¦å¾å³å ¨é¨æå°ã éå忏çé è¨å¼çº 0ï¼å³æå°æ´åé£åï¼ã
å¨é£å䏿¾å°ç第ä¸åå ç´ ç´¢å¼å¼ï¼æ²æ¾å°åçº -1ã
說æindexOf()
ç¨å´æ ¼ç¸çï¼strict equalityï¼===
ï¼çæ¹å¼æ¯è¼é£åä¸çå
ç´ è searchElement
æ¯å¦ç¸çã
indexOf()
ä¸é¢ç¯ä¾ä½¿ç¨indexOf()
ä¾å®ä½å¨é£åä¸çå¼ã
var array = [2, 9, 9];
array.indexOf(2); // 0
array.indexOf(7); // -1
array.indexOf(9, 2); // 2
array.indexOf(2, -1); // -1
array.indexOf(2, -3); // 0
å°æ¾è©²å
ç´ ææåºç¾å¨é£åä¸çä½ç½®
var indices = [];
var array = ["a", "b", "a", "c", "a", "d"];
var element = "a";
var idx = array.indexOf(element);
while (idx != -1) {
indices.push(idx);
idx = array.indexOf(element, idx + 1);
}
console.log(indices);
// [0, 2, 4]
å°æ¾å
ç´ æ¯å¦å卿¼é£åä¸ï¼è¥æ²æåå å
¥å°é£å裡
function updateVegetablesCollection(veggies, veggie) {
if (veggies.indexOf(veggie) === -1) {
veggies.push(veggie);
console.log("New veggies collection is : " + veggies);
} else if (veggies.indexOf(veggie) > -1) {
console.log(veggie + " already exists in the veggies collection.");
}
}
var veggies = ["potato", "tomato", "chillies", "green-pepper"];
updateVegetablesCollection(veggies, "spinach");
// New veggies collection is : potato,tomato,chillies,green-pepper,spinach
updateVegetablesCollection(veggies, "spinach");
// spinach already exists in the veggies collection.
Polyfill
indexOf()
was added to the ECMA-262 standard in the 5th edition; as such it may not be present in all browsers. You can work around this by utilizing the following code at the beginning of your scripts. This will allow you to use indexOf()
when there is still no native support. This algorithm matches the one specified in ECMA-262, 5th edition, assuming TypeError
and Math.abs()
have their original values.
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function indexOf(member, startFrom) {
/*
In non-strict mode, if the `this` variable is null or undefined, then it is
set to the window object. Otherwise, `this` is automatically converted to an
object. In strict mode, if the `this` variable is null or undefined, a
`TypeError` is thrown.
*/
if (this == null) {
throw new TypeError(
"Array.prototype.indexOf() - can't convert `" + this + "` to object",
);
}
var index = isFinite(startFrom) ? Math.floor(startFrom) : 0,
that = this instanceof Object ? this : new Object(this),
length = isFinite(that.length) ? Math.floor(that.length) : 0;
if (index >= length) {
return -1;
}
if (index < 0) {
index = Math.max(length + index, 0);
}
if (member === undefined) {
/*
Since `member` is undefined, keys that don't exist will have the same
value as `member`, and thus do need to be checked.
*/
do {
if (index in that && that[index] === undefined) {
return index;
}
} while (++index < length);
} else {
do {
if (that[index] === member) {
return index;
}
} while (++index < length);
}
return -1;
};
}
However, if you are more interested in all the little technical bits defined by the ECMA standard, and are less concerned about performance or conciseness, then you may find this more descriptive polyfill to be more usefull.
// Production steps of ECMA-262, Edition 5, 15.4.4.14
// Reference: http://es5.github.io/#x15.4.4.14
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function (searchElement, fromIndex) {
var k;
// 1. Let o be the result of calling ToObject passing
// the this value as the argument.
if (this == null) {
throw new TypeError('"this" is null or not defined');
}
var o = Object(this);
// 2. Let lenValue be the result of calling the Get
// internal method of o with the argument "length".
// 3. Let len be ToUint32(lenValue).
var len = o.length >>> 0;
// 4. If len is 0, return -1.
if (len === 0) {
return -1;
}
// 5. If argument fromIndex was passed let n be
// ToInteger(fromIndex); else let n be 0.
var n = fromIndex | 0;
// 6. If n >= len, return -1.
if (n >= len) {
return -1;
}
// 7. If n >= 0, then Let k be n.
// 8. Else, n<0, Let k be len - abs(n).
// If k is less than 0, then let k be 0.
k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
// 9. Repeat, while k < len
while (k < len) {
// a. Let Pk be ToString(k).
// This is implicit for LHS operands of the in operator
// b. Let kPresent be the result of calling the
// HasProperty internal method of o with argument Pk.
// This step can be combined with c
// c. If kPresent is true, then
// i. Let elementK be the result of calling the Get
// internal method of o with the argument ToString(k).
// ii. Let same be the result of applying the
// Strict Equality Comparison Algorithm to
// searchElement and elementK.
// iii. If same is true, return k.
if (k in o && o[k] === searchElement) {
return k;
}
k++;
}
return -1;
};
}
è¦ç¯ ç覽å¨ç¸å®¹æ§ ç¸å®¹æ§å註
-0
. For example, [0].indexOf(0, -0)
will now always return +0
(Firefox bug 1242043).RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4