String.prototype.endsWith()
endsWith()
方法用于判断一个字符串是否以指定字符串结尾,如果是则返回 true
,否则返回 false
。
尝试一下
语法
js
endsWith(searchString)
endsWith(searchString, endPosition)
参数
返回值
如果被检索字符串的末尾出现了指定的字符串(包括 searchString
为空字符串的情况),则返回 true
;否则返回 false
。
异常
描述
这个方法可以让你确定一个字符串是否以另一个字符串结尾。该方法区分大小写。
示例
使用 endsWith()
js
const str = "生存还是毁灭,这是一个问题。";
console.log(str.endsWith("问题。")); // true
console.log(str.endsWith("毁灭")); // false
console.log(str.endsWith("毁灭", 6)); // true
规范
Specification |
---|
ECMAScript Language Specification # sec-string.prototype.endswith |
浏览器兼容性
BCD tables only load in the browser