Array.prototype.includes() - JavaScript Array 对象
Array.prototype.includes()
includes()
方法用来判断一个数组是否包含一个指定的值,根据情况,如果包含则返回 true,否则返回false。
语法
arr.includes(valueToFind[, fromIndex])
参数
valueToFind
需要查找的元素值。
Note:使用includes()
比较字符串和字符时是区分大小写。
fromIndex
可选从fromIndex
索引处开始查找valueToFind
。如果为负值,则按升序从array.length + fromIndex
的索引开始搜(即使从末尾开始往前跳fromIndex
的绝对值个索引,然后往后搜寻)。默认为 0。返回值
A Boolean
which is true
if the value valueToFind
is found within the array(or the part of the array indicated by the index fromIndex
, if specified). Values of zero are all considered to be equal regardless of sign(that is,-0 is considered to be equal to both 0 and +0), but false
is not considered to be the same as 0.
返回一个布尔值Boolean
,如果在数组中找到了(如果传入了fromIndex
,表示在fromIndex
指定的索引范围中找到了)则返回true
。
Note: Technically speaking,includes()
uses the sameValueZero
algorithm to determine whether the given element is found.
示例
[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 arr.includes('a', -2); // false
作为通用方法的 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(valueToFind, fromIndex) { if (this == null) { throw new TypeError('"this" is null or not defined'); } // 1. Let O be ? ToObject(this value). 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 ? 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如果你需要支持那些不支持
Object.defineProperty
的废弃JavaScript 引擎,你最好不要 polyfillArray.prototype
方法,因为你不能使它们不可枚举。规范
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!