Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“String” Methods

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

检查字符串string是否以给定的target字符串结尾。

添加版本

3.0.0

参数

  1. [string=''] (string): 要检索的字符串。
  2. [target] (string): 要检索字符。
  3. [position=string.length] (number): 检索的位置。

返回

(boolean): 如果字符串stringtarget字符串结尾,那么返回 true,否则返回 false

例子

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

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods