其他分享
首页 > 其他分享> > includes的使用

includes的使用

作者:互联网

1.数组中使用includes

includes方法会找到某一数组是否包含某元素  返回一个布尔值

 <script>
        let arr=[1,2,3,4,4,5,6]
        const flag=arr.includes(1) //true
        console.log(flag);
    </script>

2.字符串中使用includess

includess也可以用来查询字符串中是否包含某一个元素   返回的也是一个布尔值

 <script>
	let str='hello word' 
    console.log(str.includes('he')); //true
 </script>

3.includess使用注意事项
 


includes是严格区分大小写的

includes的返回值是一个布尔值

标签:arr,log,布尔值,includess,flag,使用,includes
来源: https://blog.csdn.net/m0_52765288/article/details/120810289