js includes函数用法(数组中使用includes方法详解)
1、js includes函数干嘛的
includes() 方法用于判断字符串是否包含指定的子字符串。
如果找到匹配的字符串则返回 true,否则返回 false。
注意:includes() 方法区分大小写。
2、数组中使用include方法
includes 可以判断一个数组中是否包含某一个元素,并返回true 或者false
varstr = ["taimoor", "ali", "umer"]; varn = str.includes("taimoor"); // result: true
includes可以包含两个参数,第二个参数表示判断的起始位置 起始位置第一个数字是0
3、字符串中使用include方法
var str = "I love JavaScript."; var word = str.includes("javaScript"); // result: true
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/js/1106.html
原文地址:https://tangjiusheng.cn/js/1106.html