Lodash _.startsWith

2021-09-23 15:59 更新

_.startsWith([string=''], [target], [position=0]) 

檢查字符串string是否以 target 開(kāi)頭。

添加版本

3.0.0

參數(shù)

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

返回

(boolean): 如果string以 target,那么返回true,否則返回 false 。

例子

_.startsWith('abc', 'a');
// => true 
_.startsWith('abc', 'b');
// => false
 _.startsWith('abc', 'b', 1);
// => true


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)