当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Array includes()用法及代码示例


下面是Array includes()方法的示例。

  • 例:
    <script> 
        var name = [ 'gfg', 'cse', 'geeks', 'portal' ]; 
      
        a = name.includes('gfg') 
      
        // Printing result of includes() 
        document.write(a); 
    </script>
  • 输出:
    true

array.includes()方法用于知道数组中是否存在特定元素,因此,它返回true或false,即,如果该元素存在,则返回true,否则返回false。

用法:

array.includes(searchElement, start)

参数:此方法接受上面提到和下面描述的两个参数:

  • searchElement:此参数保存将要搜索的元素。
  • start:此参数是可选的,它保存数组的起点,从此处开始搜索,默认值为0。

返回值:它返回一个布尔值,即True或False。



以下示例说明了JavaScript中的Array includes()方法:

  • 范例1:在此示例中,该方法将在该数组中搜索元素2。
    Input:[1, 2, 3, 4, 5].includes(2);
    Output:true
  • 范例2:在此示例中,该方法将在该数组中搜索元素9。
    Input:[1, 2, 3, 4, 5].includes(9);
    Output:false

下面提供了上述方法的代码:

程序1:

<script> 
  
    // Taking input as an array A 
    // having some elements. 
    var A = [ 1, 2, 3, 4, 5 ]; 
  
    // includes() method is called to 
    // test whether the searching element 
    // is present in given array or not. 
    a = A.includes(2) 
  
    // Printing result of includes(). 
    document.write(a); 
</script>

输出:

true

程序2:

<script> 
    // Taking input as an array A 
    // having some elements. 
    var name = [ 'gfg', 'cse', 'geeks', 'portal' ]; 
  
    // includes() method is called to 
    // test whether the searching element 
    // is present in given array or not. 
    a = name.includes('cat') 
  
    // Printing result of includes() 
    document.write(a); 
</script>

输出:

false

支持的浏览器:下面列出了JavaScript数组includes()方法支持的浏览器:

  • 谷歌浏览器47.0
  • Microsoft Edge 14.0
  • Mozilla Firefox 43.0
  • Safari 9.0
  • Opera 34.0




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript Array includes() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。