endsWith
最后更新于:2022-04-02 00:06:59
## endsWith
+ [link](./endsWith "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L12119 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.endswith "See the npm package.")
```
_.endsWith([string=''], [target], [position=string.length])
```
检查给定的字符是否是字符串的结尾
### 参数
1. [string=''] (string)
要检索的字符串
2. [target] (string)
要检索字符
3. [position=string.length] (number)
检索的位置
### 返回值 (boolean)
如果是结尾返回 `true`,否则返回 `false`
### 示例
```
_.endsWith('abc', 'c');
// => true
_.endsWith('abc', 'b');
// => false
_.endsWith('abc', 'b', 2);
// => true
```
';