ES6 - 新的字符串方法 startsWith



此方法用于判断字符串是否以指定的字符开头。

语法

str.startsWith(searchString[, position])

参数

  • searchString − 要在该字符串开头搜索的字符。

  • Position − 在此字符串中开始搜索 searchString 的位置;默认为 0。

返回值

如果字符串以搜索字符串的字符开头,则返回 true;否则返回 false

示例

var str = 'hello world!!!'; 
console.log(str.startsWith('hello'));

输出

true 
广告