码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-02-17 19:59:42      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:sea   logs   imp   common   type   prot   starting   ble   tar   

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

标签:sea   logs   imp   common   type   prot   starting   ble   tar   

原文地址:http://www.cnblogs.com/Answer1215/p/6411221.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!