该方法确定字符串是否以指定的字符开头。
String.prototype.startsWith - 语法
str.startsWith(searchString[, position])
searchString - 在此字符串开头要搜索的字符。
position - 该字符串中开始搜索searchString的位置;默认为0。
String.prototype.startsWith - 返回值
true (如果字符串以搜索字符串的字符开头);否则为 false 。
String.prototype.startsWith - 示例
var str='hello world!!!'; console.log(str.startsWith('hello'));
运行上面代码输出
true
参考链接
https://www.learnfk.com/es6/es6-string-method-startswith.html
标签:startsWith,searchString,String,str,字符串,prototype From: https://blog.51cto.com/u_14033984/9560610