[ES2016] Check if an array contains an item using Array.prototype.includes

Posted Answer1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[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的主要内容,如果未能解决你的问题,请参考以下文章

复习计划里的低级错误

线性筛

springboot整合es出现elasticsearch health check failed

监控Elasticsearch的插件check_es_system

监控Elasticsearch的插件check_es_system

'Check Android SDK'has encountered a problem.An internal error during:"Check Android SD