includes()函数的⽤法
在ES5,Array已经提供了indexOf⽤来查找某个元素的位置,如果不存在就返回-1,但是这个函数在判断数组是否包含某个元素时有两个⼩不⾜,第⼀个是它会返回-1和元素的位置来表⽰是否包含,在定位⽅⾯是没问题,就是不够语义化。另⼀个问题是不能判断是否有NaN的元素。3a学校
⽤法
str.includes(archString[, position])批评之后
参数
archString
要在此字符串中搜索的字符串。区分⼤⼩写。
position华为手机主题
可选。从当前字符串的哪个索引位置开始搜寻⼦字符串;默认值为0。
var str = 'To be, or not to be, that is the question.';
console.log(str.includes('To be')); // true
console.log(str.includes('question')); // true
console.log(str.includes('nonexistent')); // fal
console.log(str.includes('To be', 1)); // fal 从第⼀个索引开始找
console.log(str.includes('TO BE')); // fal
杂乱无章替代的⽅法
1. str.indexOf()
function fackIncludes(str,Field){
if(str.indexOf(Field) != -1){深圳地铁时间表早晚
return true
}
return fal
}
2. str.arch()
function fackIncludes(str,Field){
李白的送别诗if(str.arch(Field) != -1){
return true
}
return fal
}蜘蛛卡通
3. str.match()
function fackIncludes(str,Field){
if(str.match(Field)){
el的用法
return true
}
return fal
}