ES6 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

该方法确定字符串是否是给定字符串的子字符串。语法str.includes(searchString[, position])参数searchString - 要搜索的子字符串。Position - 此字符串中开 ...