该方法确定字符串是否是给定字符串的子字符串。
String.prototype.includes - 语法
str.includes(searchString[, position])
searchString - 要搜索的子字符串。
position - 该字符串中开始搜索searchString的位置;默认为0。
String.prototype.includes - 返回值
true 如果字符串包含子字符串;否则为 false 。
String.prototype.includes - 示例
var str='Hello World'; console.log(str.includes('hell')) console.log(str.includes('Hell')); console.log(str.includes('or')); console.log(str.includes('or',1))
运行上面代码输出
false true true true
参考链接
https://www.learnfk.com/es6/es6-string-method-includes.html
标签:searchString,console,String,无涯,includes,str,字符串,prototype From: https://blog.51cto.com/u_14033984/9561245