JavaScript 字符串的startsWith()方法
startsWith()
方法如果字符串以指定字符(串)开头,则返回
true
。如果不是,则返回
false
。
const message = "JavaScript is fun";
// 检查 message 是否以 Java 开头
let result = message.startsWith("Java");
console.log(result); // true
// 检查 message 是否以 Script 开头
result = message.startsWith("Script");
console.log(result); // false
startsWith() 语法
startsWith()
方法的语法是:
str.startsWith(searchString, position);
这里,str 是一个字符串。
startsWith() 参数
startsWith()
方法接受:
startsWith() 返回值
true
。
false
。
注意
:
startsWith()
方法区分大小写。