JS includes()

🌙
手机阅读
本文目录结构

**includes()**方法判断类型化数组中是否含有特定元素,并相应返回true 或者false ,这个方法的算法和Array.prototype.includes()相同。 TypedArray 是这里的 类型化数组 之一。

语法

typedarray.includes(searchElement[, fromIndex]);

参数

searchElement

要搜索的元素。

fromIndex

可选,数组中的位置,在这里开始搜索 searchElement;默认为 0。

返回值

Boolean

示例

var uint8 = new Uint8Array([1,2,3]);
uint8.includes(2);     // true
uint8.includes(4);     // false
uint8.includes(3, 3);  // false

// NaN 的处理 (仅仅对 Float32 和 Float64 为 true)
new Uint8Array([NaN]).includes(NaN); // false, 因为 NaN 传递给构造器时转换为 0
new Float32Array([NaN]).includes(NaN); // true;
new Float64Array([NaN]).includes(NaN); // true;

规范

Specification Status Comment
[ECMAScript 2016 (ECMA-262)
TypedArray.prototype.includes](https://www.ecma-international.org/ecma-262/7.0/#sec-%typedarray%.prototype.includes) Standard 初始定义。
[ECMAScript Latest Draft (ECMA-262)
TypedArray.prototype.includes](https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.includes) Draft  

浏览器兼容性

We’re converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven’t yet converted the data it contains.

  • Desktop
  • Mobile
Feature Chrome Firefox (Gecko) Edge Internet Explorer Opera Safari
Basic support 47 43 14 未实现 34 10
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support 未实现 47 43 未实现 34 10

另见

AXIHE / 精选资源

浏览全部教程

面试题

学习网站

前端培训
自己甄别

前端书籍

关于朱安邦

我叫 朱安邦,阿西河的站长,在杭州。

以前是一名平面设计师,后来开始接接触前端开发,主要研究前端技术中的JS方向。

业余时间我喜欢分享和交流自己的技术,欢迎大家关注我的 Bilibili

关注我: Github / 知乎

于2021年离开前端领域,目前重心放在研究区块链上面了

我叫朱安邦,阿西河的站长

目前在杭州从事区块链周边的开发工作,机械专业,以前从事平面设计工作。

2014年底脱产在老家自学6个月的前端技术,自学期间几乎从未出过家门,最终找到了满意的前端工作。更多>

于2021年离开前端领域,目前从事区块链方面工作了