_.endsWith([string=''], [target], [position=string.length])
_.endsWith()
方法用于检查字符串是否以指定的目标字符串结尾。
参数
string
(string): 要检查的字符串。target
(string): 要搜索的目标字符串。position
(number): 检查的位置,默认为字符串的长度。
返回值
(boolean): 如果字符串以指定的目标字符串结尾,则返回 true,否则返回 false。
示例
javascript
const result1 = _.endsWith("abc", "c");
console.log(result1);
// => true
const result2 = _.endsWith("abc", "b");
console.log(result2);
// => false
const result3 = _.endsWith("abc", "b", 2);
console.log(result3);
// => true
在这个示例中,检查了字符串 'abc'
是否以 'c'
结尾,结果为 true;以 'b'
结尾,结果为 false;以 'b'
结尾,从位置 2 开始检查,结果为 true。