首页 > 代码库 > [ES2016] Check if an array contains an item using Array.prototype.includes
[ES2016] Check if an array contains an item using Array.prototype.includes
We often want to check if an array includes a specific item. It‘s been common to do this with the Array.prototype.indexOf
method, but now we have a simpler way: We can use the Array.prototype.includes
method, which is available starting with ES2016.
Normal case:
var a = [1, 2, 3];a.includes(2); // true a.includes(4); // false
Search from index:
[1, 2, 3].includes(3, 3); // false[1, 2, 3].includes(3, -1); // true
NaN problem:
[1, 2, NaN].includes(NaN); // true[1, 2, NaN].indexOf(NaN); // -1
[ES2016] Check if an array contains an item using Array.prototype.includes
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。