endsWith


此函数确定字符串是否以另一个字符串的字符结尾。

语法

str.endsWith(matchstring[, position])

参数

  • matchstring - 字符串必须以的字符结尾。它区分大小写。

  • Position - 匹配matchstring的位置。此参数是可选的。

返回值

如果字符串以匹配字符串的字符结尾,则为true;否则为false。否则,假。

var str = 'Hello World !!! ';

console.log(str.endsWith('Hello'));
console.log(str.endsWith('Hello',5));

输出

false
true