服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.endsWith(string='', target, position=string.length)

检查是否string以给定的目标字符串结束。

以来

3.0.0

参数
  1. [string=''] (字符串):要检查的字符串。
  2. [target] (字符串):要搜索的字符串。
  3. [position=string.length] (数字):最多搜索的位置。
返回

(boolean):返回true如果stringtargetelse 结束false

_.endsWith('abc', 'c');
// => true
 
_.endsWith('abc', 'b');
// => false
 
_.endsWith('abc', 'b', 2);
// => true