在线文档教程

array.includes

array.includes

includes()方法用来判断一个数组是否包含一个指定的值,根据情况返回 truefalse

var a = [1, 2, 3]; a.includes(2 // true a.includes(4 // false

语法

arr.includes(searchElement) arr.includes(searchElement, fromIndex)

参数

searchElement需要查找的元素值。

返回值

一个Boolean

示例

[1, 2, 3].includes(2 // true [1, 2, 3].includes(4 // false [1, 2, 3].includes(3, 3 // false [1, 2, 3].includes(3, -1 // true [1, 2, NaN].includes(NaN // true

fromIndex 大于等于数组长度

 如果fromIndex大于等于数组长度 ,则返回false。该数组不会被搜索。

var arr = ['a', 'b', 'c']; arr.includes('c', 3 //false arr.includes('c', 100 // false

计算出的索引小于 0

如果fromIndex为负值,计算出的索引将作为开始搜索searchElement的位置。如果计算出的索引小于 0,则整个数组都会被搜索。

// array length is 3 // fromIndex is -100 // computed index is 3 + (-100) = -97 var arr = ['a', 'b', 'c']; arr.includes('a', -100 // true arr.includes('b', -100 // true arr.includes('c', -100 // true

includes() 作为一个通用方法

includes()方法有意设计为通用方法。它不要求this值是数组对象,所以它可以被用于其他类型的对象 (比如,类数组对象)。下面的例子展示了 在函数的arguments对象上调用的includes()方法。

(function() { console.log([].includes.call(arguments, 'a') // true   console.log([].includes.call(arguments, 'd') // false })('a','b','c'

Polyfill

// https://tc39.github.io/ecma262/#sec-array.prototype.includes if (!Array.prototype.includes) { Object.defineProperty(Array.prototype, 'includes', { value: function(searchElement, fromIndex) { // 1. Let O be ? ToObject(this value). if (this == null) { throw new TypeError('"this" is null or not defined' } var o = Object(this // 2. Let len be ? ToLength(? Get(O, "length")). var len = o.length >>> 0; // 3. If len is 0, return false. if (len === 0) { return false; } // 4. Let n be ? ToInteger(fromIndex). // (If fromIndex is undefined, this step produces the value 0.) var n = fromIndex | 0; // 5. If n ≥ 0, then // a. Let k be n. // 6. Else n < 0, // a. Let k be len + n. // b. If k < 0, let k be 0. var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0   function sameValueZero(x, y) { return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y)   } // 7. Repeat, while k < len while (k < len) { // a. Let elementK be the result of ? Get(O, ! ToString(k)). // b. If SameValueZero(searchElement, elementK) is true, return true. // c. Increase k by 1. if (sameValueZero(o[k], searchElement)) { return true; } k++; } // 8. Return false return false; } } }

如果你需要支持那些不支持Object.defineProperty的废弃JavaScript 引擎,你最好不要 polyfillArray.prototype方法,因为你不能使它们不可枚举。

规范

SpecificationStatusComment
ECMAScript 2016 (ECMA-262)The definition of 'Array.prototype.includes' in that specification.StandardInitial definition.
ECMAScript Latest Draft (ECMA-262)The definition of 'Array.prototype.includes' in that specification.Living Standard

浏览器兼容性

FeatureChromeEdgeFirefoxInternet ExplorerOperaSafari
Basic Support471443No349

FeatureAndroidChrome for AndroidEdge mobileFirefox for AndroidIE mobileOpera AndroidiOS Safari
Basic Support(Yes)(Yes)1443No349