📅  最后修改于: 2023-12-03 15:16:06.911000             🧑  作者: Mango
在 Javascript 中,字符串可以使用 startsWith() 函数来检查一个字符串是否以指定的字符串开头。这个函数返回一个布尔值,表示指定字符串是否为原字符串的前缀。
str.startsWith(searchString[, position])
searchString
: 要搜索的字符串position
: 可选参数,从原字符串中搜索的开始位置,默认为 0。如果原字符串以指定的字符串开头,则返回 true
,否则返回 false
。
var str = 'hello world';
console.log(str.startsWith('hello')); // true
console.log(str.startsWith('world')); // false
console.log(str.startsWith('world', 6)); // true
false
。